8b0fbe1fa7148197807db9ebbfc2e6b1b997091f
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int8.java
1 /*
2   * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3   *
4   * This program and the accompanying materials are made available under the
5   * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6   * and is available at http://www.eclipse.org/legal/epl-v10.html
7   */
8 package org.opendaylight.controller.yang.model.util;
9
10 import java.net.URI;
11 import java.util.Date;
12 import java.util.List;
13
14 import org.opendaylight.controller.yang.common.QName;
15 import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition;
16 import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
17
18 /**
19  * Implementation of Yang int8 built-in type.
20  * <br>
21  * int8 represents integer values between -128 and 127, inclusively. The Java counterpart of
22  * Yang int8 built-in type is {@link Byte}.
23  *
24  * @see AbstractSignedInteger
25  */
26 public class Int8 extends AbstractSignedInteger {
27
28     private static final QName name = BaseTypes.constructQName("int8");
29     private Byte defaultValue = null;
30     private static final String description =
31             "represents integer values between -128 and 127, inclusively.";
32     private final IntegerTypeDefinition baseType;
33
34     private Int8() {
35         super(name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
36         this.baseType = this;
37     }
38
39     public Int8(final List<String> actualPath, final URI namespace,
40             final Date revision) {
41         super(actualPath, namespace, revision, name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
42         this.baseType = new Int8();
43     }
44
45     public Int8(final List<String> actualPath, final URI namespace,
46             final Date revision, final Byte defaultValue) {
47         super(actualPath, namespace, revision, name, description, Byte.MIN_VALUE, Byte.MAX_VALUE, "");
48         this.baseType = new Int8();
49         this.defaultValue = defaultValue;
50     }
51
52     public Int8(final List<String> actualPath, final URI namespace,
53             final Date revision, final List<RangeConstraint> rangeStatements,
54             final String units, final Byte defaultValue) {
55         super(actualPath, namespace, revision, name, description, rangeStatements, units);
56         this.baseType = new Int8();
57         this.defaultValue = defaultValue;
58     }
59
60     /*
61      * (non-Javadoc)
62      *
63      * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
64      */
65     @Override
66     public IntegerTypeDefinition getBaseType() {
67         return baseType;
68     }
69
70     /*
71      * (non-Javadoc)
72      *
73      * @see org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue()
74      */
75     @Override
76     public Object getDefaultValue() {
77         return defaultValue;
78     }
79
80     @Override
81     public int hashCode() {
82         final int prime = 31;
83         int result = super.hashCode();
84         result = prime * result
85                 + ((defaultValue == null) ? 0 : defaultValue.hashCode());
86         return result;
87     }
88
89     @Override
90     public boolean equals(Object obj) {
91         if (this == obj) {
92             return true;
93         }
94         if (!super.equals(obj)) {
95             return false;
96         }
97         if (getClass() != obj.getClass()) {
98             return false;
99         }
100         Int8 other = (Int8) obj;
101         if (defaultValue == null) {
102             if (other.defaultValue != null) {
103                 return false;
104             }
105         } else if (!defaultValue.equals(other.defaultValue)) {
106             return false;
107         }
108         return true;
109     }
110
111     @Override
112     public String toString() {
113         StringBuilder builder = new StringBuilder();
114         builder.append("Int8 [defaultValue=");
115         builder.append(defaultValue);
116         builder.append(", AbstractInteger=");
117         builder.append(super.toString());
118         builder.append("]");
119         return builder.toString();
120     }
121 }