X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Futil%2FUint8.java;h=85e7aab15553104d3d79674e1389ea19381ade75;hp=c369e037763c7ec821cac453dfe9a413d70d1901;hb=970fb91c60c15a9b57e078f81aab7dde903addb9;hpb=0f846fcbc207a4213ac133e1d08a305fc72168ba diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint8.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint8.java index c369e03776..85e7aab155 100644 --- a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint8.java +++ b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint8.java @@ -1,62 +1,39 @@ /* - * Copyright (c) 2013 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 - */ + * Copyright (c) 2013 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 + */ package org.opendaylight.controller.yang.model.util; -import java.util.List; - import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.model.api.SchemaPath; -import org.opendaylight.controller.yang.model.api.type.RangeConstraint; import org.opendaylight.controller.yang.model.api.type.UnsignedIntegerTypeDefinition; /** - * Implementation of Yang uint8 built-in type. - *
- * uint8 represents integer values between 0 and 255, inclusively. The Java counterpart of - * Yang uint8 built-in type is {@link Short}. + * Implementation of Yang uint8 built-in type.
+ * uint8 represents integer values between 0 and 255, inclusively. * * @see AbstractUnsignedInteger */ public final class Uint8 extends AbstractUnsignedInteger { - + public static final int MAX_VALUE = 255; private static final QName name = BaseTypes.constructQName("uint8"); - private Short defaultValue = null; - private static final String description = - "uint8 represents integer values between 0 and 255, inclusively."; + private final Short defaultValue = null; + private static final String description = "uint8 represents integer values between 0 and 255, inclusively."; private final UnsignedIntegerTypeDefinition baseType; - private Uint8() { - super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); - this.baseType = this; - } - public Uint8(final SchemaPath path) { - super(path, name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); - this.baseType = new Uint8(); - } - - public Uint8(final SchemaPath path, final Short defaultValue) { - super(path, name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); - this.baseType = new Uint8(); - this.defaultValue = defaultValue; - } - - public Uint8(final SchemaPath path, final List rangeStatements, - final String units, final Short defaultValue) { - super(path, name, description, rangeStatements, units); - this.baseType = new Uint8(); - this.defaultValue = defaultValue; + super(path, name, description, MAX_VALUE, ""); + this.baseType = this; } /* * (non-Javadoc) * - * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() + * @see + * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() */ @Override public UnsignedIntegerTypeDefinition getBaseType() { @@ -66,7 +43,9 @@ public final class Uint8 extends AbstractUnsignedInteger { /* * (non-Javadoc) * - * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue() + * @see + * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue + * () */ @Override public Object getDefaultValue() { @@ -77,8 +56,7 @@ public final class Uint8 extends AbstractUnsignedInteger { public int hashCode() { final int prime = 31; int result = super.hashCode(); - result = prime * result - + ((defaultValue == null) ? 0 : defaultValue.hashCode()); + result = prime * result + ((defaultValue == null) ? 0 : defaultValue.hashCode()); return result; } @@ -114,4 +92,5 @@ public final class Uint8 extends AbstractUnsignedInteger { builder.append("]"); return builder.toString(); } + }