Refactored SchemaPath for yang java types. Fixed SchemaPath for augmented nodes types.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int32.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.util.List;
11
12 import org.opendaylight.controller.yang.common.QName;
13 import org.opendaylight.controller.yang.model.api.SchemaPath;
14 import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition;
15 import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
16
17 /**
18  * Implementation of Yang int32 built-in type. <br>
19  * int32 represents integer values between -2147483648 and 2147483647,
20  * inclusively. The Java counterpart of Yang int32 built-in type is
21  * {@link Integer}.
22  *
23  * @see AbstractSignedInteger
24  *
25  */
26 public final class Int32 extends AbstractSignedInteger {
27
28     private static final QName name = BaseTypes.constructQName("int32");
29     private Integer defaultValue = null;
30     private static final String description = "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
31     private final IntegerTypeDefinition baseType;
32
33     private Int32() {
34         super(name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
35         this.baseType = this;
36     }
37
38     public Int32(final SchemaPath path) {
39         super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
40         this.baseType = new Int32();
41     }
42
43     public Int32(final SchemaPath path, final Integer defaultValue) {
44         super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
45         this.baseType = new Int32();
46         this.defaultValue = defaultValue;
47     }
48
49     public Int32(final SchemaPath path,
50             final List<RangeConstraint> rangeStatements, final String units,
51             final Integer defaultValue) {
52         super(path, name, description, rangeStatements, units);
53         this.baseType = new Int32();
54         this.defaultValue = defaultValue;
55     }
56
57     /*
58      * (non-Javadoc)
59      *
60      * @see
61      * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
62      */
63     @Override
64     public IntegerTypeDefinition getBaseType() {
65         return baseType;
66     }
67
68     /*
69      * (non-Javadoc)
70      *
71      * @see
72      * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue
73      * ()
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         Int32 other = (Int32) 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("Int32 [defaultValue=");
115         builder.append(defaultValue);
116         builder.append(", AbstractInteger=");
117         builder.append(super.toString());
118         builder.append("]");
119         return builder.toString();
120     }
121 }