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%2FUint64.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmodel%2Futil%2FUint64.java;h=b5af55fc41150d11c6ddc97d62d877e56a08c42f;hp=e17a4dc4df8783bdc4efe2fcc8a6252af0d427bc;hb=4ce0f6630bc576b97c8c9a08848aafb6e90a75b0;hpb=c8b79431119d6952b60a092e89727aa648a89bdd diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/Uint64.java b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint64.java similarity index 90% rename from opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/Uint64.java rename to opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint64.java index e17a4dc4df..b5af55fc41 100644 --- a/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/model/util/Uint64.java +++ b/opendaylight/sal/yang-prototype/yang/yang-model-util/src/main/java/org/opendaylight/controller/yang/model/util/Uint64.java @@ -1,110 +1,110 @@ -/* - * 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.model.util; - -import java.math.BigInteger; -import java.util.List; - -import org.opendaylight.controller.model.api.type.RangeConstraint; -import org.opendaylight.controller.model.api.type.UnsignedIntegerTypeDefinition; -import org.opendaylight.controller.yang.common.QName; - -/** - * Implementation of Yang uint64 built-in type.
- * uint64 represents integer values between 0 and 18446744073709551615, - * inclusively. The Java counterpart of Yang uint64 built-in type is - * {@link BigInteger}. - * - */ -public class Uint64 extends AbstractUnsignedInteger { - - private static final QName name = BaseTypes.constructQName("uint32"); - private BigInteger defaultValue = null; - private static final String description = - "uint64 represents integer values between 0 and 18446744073709551615, inclusively."; - - public Uint64() { - super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); - } - - public Uint64(final BigInteger defaultValue) { - super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); - this.defaultValue = defaultValue; - } - - public Uint64(final List rangeStatements, - final String units, final BigInteger defaultValue) { - super(name, description, rangeStatements, units); - this.defaultValue = defaultValue; - } - - /* - * (non-Javadoc) - * - * @see - * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() - */ - @Override - public UnsignedIntegerTypeDefinition getBaseType() { - return this; - } - - /* - * (non-Javadoc) - * - * @see - * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue - * () - */ - @Override - public Object getDefaultValue() { - return defaultValue; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = super.hashCode(); - result = prime * result - + ((defaultValue == null) ? 0 : defaultValue.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) { - return true; - } - if (!super.equals(obj)) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - Uint64 other = (Uint64) obj; - if (defaultValue == null) { - if (other.defaultValue != null) { - return false; - } - } else if (!defaultValue.equals(other.defaultValue)) { - return false; - } - return true; - } - - @Override - public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append("Uint64 [defaultValue="); - builder.append(defaultValue); - builder.append(", AbstractInteger="); - builder.append(super.toString()); - builder.append("]"); - return builder.toString(); - } -} +/* + * 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.math.BigInteger; +import java.util.List; + +import org.opendaylight.controller.yang.common.QName; +import org.opendaylight.controller.yang.model.api.type.RangeConstraint; +import org.opendaylight.controller.yang.model.api.type.UnsignedIntegerTypeDefinition; + +/** + * Implementation of Yang uint64 built-in type.
+ * uint64 represents integer values between 0 and 18446744073709551615, + * inclusively. The Java counterpart of Yang uint64 built-in type is + * {@link BigInteger}. + * + */ +public class Uint64 extends AbstractUnsignedInteger { + + private static final QName name = BaseTypes.constructQName("uint64"); + private BigInteger defaultValue = null; + private static final String description = + "uint64 represents integer values between 0 and 18446744073709551615, inclusively."; + + public Uint64() { + super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); + } + + public Uint64(final BigInteger defaultValue) { + super(name, description, Short.MIN_VALUE, Short.MAX_VALUE, ""); + this.defaultValue = defaultValue; + } + + public Uint64(final List rangeStatements, + final String units, final BigInteger defaultValue) { + super(name, description, rangeStatements, units); + this.defaultValue = defaultValue; + } + + /* + * (non-Javadoc) + * + * @see + * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType() + */ + @Override + public UnsignedIntegerTypeDefinition getBaseType() { + return this; + } + + /* + * (non-Javadoc) + * + * @see + * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue + * () + */ + @Override + public Object getDefaultValue() { + return defaultValue; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = super.hashCode(); + result = prime * result + + ((defaultValue == null) ? 0 : defaultValue.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) { + return true; + } + if (!super.equals(obj)) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + Uint64 other = (Uint64) obj; + if (defaultValue == null) { + if (other.defaultValue != null) { + return false; + } + } else if (!defaultValue.equals(other.defaultValue)) { + return false; + } + return true; + } + + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append("Uint64 [defaultValue="); + builder.append(defaultValue); + builder.append(", AbstractInteger="); + builder.append(super.toString()); + builder.append("]"); + return builder.toString(); + } +}