Reduce visibility of codec methods
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Uint8StringCodec.java
index 4c84501f981fa0afa51f2c08e9b3d1ab4a7dcfd6..9b30015dc5e956555ba6a53fab34e3d30b72d3dc 100644 (file)
@@ -1,35 +1,37 @@
 /*
- * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
+ * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
- * This program and the accompanying materials are made available under the terms of the Eclipse
- * Public License v1.0 which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
+
 package org.opendaylight.yangtools.yang.data.impl.codec;
 
 import com.google.common.base.Optional;
+import java.util.Objects;
 import org.opendaylight.yangtools.yang.data.api.codec.Uint8Codec;
 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
 
-class Uint8StringCodec extends AbstractIntegerStringCodec<Short, UnsignedIntegerTypeDefinition> implements
+final class Uint8StringCodec extends AbstractIntegerStringCodec<Short, UnsignedIntegerTypeDefinition> implements
         Uint8Codec<String> {
 
-    protected Uint8StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
+    Uint8StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
         super(typeDef, extractRange(typeDef.orNull()), Short.class);
     }
 
     @Override
-    public final String serialize(final Short data) {
-        return data == null ? "" : data.toString();
+    public String serialize(final Short data) {
+        return Objects.toString(data, "");
     }
 
     @Override
-    public final Short deserialize(final String stringRepresentation, final int base) {
+    Short deserialize(final String stringRepresentation, final int base) {
         return Short.valueOf(stringRepresentation, base);
     }
 
     @Override
-    protected Short convertValue(final Number value) {
+    Short convertValue(final Number value) {
         return value.shortValue();
     }
 }