Merge "Added support for annotations in generated APIs."
[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.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 int32 built-in type. <br>
20  * int32 represents integer values between -2147483648 and 2147483647,
21  * inclusively. The Java counterpart of Yang int32 built-in type is
22  * {@link Integer}.
23  *
24  * @see AbstractSignedInteger
25  *
26  */
27 public class Int32 extends AbstractSignedInteger {
28
29     private static final QName name = BaseTypes.constructQName("int32");
30     private Integer defaultValue = null;
31     private static final String description =
32             "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
33
34     public Int32(final List<String> actualPath, final URI namespace,
35             final Date revision) {
36         super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
37     }
38
39     public Int32(final List<String> actualPath, final URI namespace,
40             final Date revision, final Integer defaultValue) {
41         super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
42         this.defaultValue = defaultValue;
43     }
44
45     public Int32(final List<String> actualPath, final URI namespace,
46             final Date revision, final List<RangeConstraint> rangeStatements,
47             final String units, final Integer defaultValue) {
48         super(actualPath, namespace, revision, name, description, rangeStatements, units);
49         this.defaultValue = defaultValue;
50     }
51
52     /*
53      * (non-Javadoc)
54      *
55      * @see
56      * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
57      */
58     @Override
59     public IntegerTypeDefinition getBaseType() {
60         return this;
61     }
62
63     /*
64      * (non-Javadoc)
65      *
66      * @see
67      * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue
68      * ()
69      */
70     @Override
71     public Object getDefaultValue() {
72         return defaultValue;
73     }
74
75     @Override
76     public int hashCode() {
77         final int prime = 31;
78         int result = super.hashCode();
79         result = prime * result
80                 + ((defaultValue == null) ? 0 : defaultValue.hashCode());
81         return result;
82     }
83
84     @Override
85     public boolean equals(Object obj) {
86         if (this == obj) {
87             return true;
88         }
89         if (!super.equals(obj)) {
90             return false;
91         }
92         if (getClass() != obj.getClass()) {
93             return false;
94         }
95         Int32 other = (Int32) obj;
96         if (defaultValue == null) {
97             if (other.defaultValue != null) {
98                 return false;
99             }
100         } else if (!defaultValue.equals(other.defaultValue)) {
101             return false;
102         }
103         return true;
104     }
105
106     @Override
107     public String toString() {
108         StringBuilder builder = new StringBuilder();
109         builder.append("Int32 [defaultValue=");
110         builder.append(defaultValue);
111         builder.append(", AbstractInteger=");
112         builder.append(super.toString());
113         builder.append("]");
114         return builder.toString();
115     }
116 }