Reduce visibility of codec methods
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / Uint16StringCodec.java
index af4b3f76dc6fd0195d447385ef16011a0acf7f61..ddd021ab70306e9ba7b25d5b24b150e39e483a4f 100644 (file)
@@ -1,34 +1,36 @@
 /*
- * 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.Uint16Codec;
 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
 
-class Uint16StringCodec extends AbstractIntegerStringCodec<Integer, UnsignedIntegerTypeDefinition> implements
+final class Uint16StringCodec extends AbstractIntegerStringCodec<Integer, UnsignedIntegerTypeDefinition> implements
         Uint16Codec<String> {
-    protected Uint16StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
+    Uint16StringCodec(final Optional<UnsignedIntegerTypeDefinition> typeDef) {
         super(typeDef, extractRange(typeDef.orNull()), Integer.class);
     }
 
     @Override
-    public final Integer deserialize(final String stringRepresentation, final int base) {
+    Integer deserialize(final String stringRepresentation, final int base) {
         return Integer.valueOf(stringRepresentation, base);
     }
 
     @Override
-    public final String serialize(final Integer data) {
-        return data == null ? "" : data.toString();
+    public String serialize(final Integer data) {
+        return Objects.toString(data, "");
     }
 
     @Override
-    protected Integer convertValue(final Number value) {
+    Integer convertValue(final Number value) {
         return value.intValue();
     }
 }