Merge "changed builder generator"
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / AbstractSignedInteger.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.yangtools.yang.model.util;
9
10 import java.util.ArrayList;
11 import java.util.Collections;
12 import java.util.List;
13
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
16 import org.opendaylight.yangtools.yang.model.api.Status;
17 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
18 import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition;
19 import org.opendaylight.yangtools.yang.model.api.type.RangeConstraint;
20
21 /**
22  * The Abstract Integer class defines implementation of IntegerTypeDefinition
23  * interface which represents SIGNED Integer values defined in Yang language. <br>
24  * The integer built-in types in Yang are int8, int16, int32, int64. They
25  * represent signed integers of different sizes:
26  * 
27  * <ul>
28  * <li>int8 - represents integer values between -128 and 127, inclusively.</li>
29  * <li>int16 - represents integer values between -32768 and 32767, inclusively.</li>
30  * <li>int32 - represents integer values between -2147483648 and 2147483647,
31  * inclusively.</li>
32  * <li>int64 - represents integer values between -9223372036854775808 and
33  * 9223372036854775807, inclusively.</li>
34  * </ul>
35  * 
36  */
37 public abstract class AbstractSignedInteger implements IntegerTypeDefinition {
38     private final QName name;
39     private final SchemaPath path;
40     private final String description;
41     private static final String REFERENCE = "https://tools.ietf.org/html/rfc6020#section-9.2";
42     private final String units;
43     private final List<RangeConstraint> rangeStatements;
44
45     /**
46      * @param name
47      * @param description
48      * @param minRange
49      * @param maxRange
50      * @param units
51      */
52     public AbstractSignedInteger(final QName name, final String description, final Number minRange,
53             final Number maxRange, final String units) {
54         this.name = name;
55         this.path = new SchemaPath(Collections.singletonList(name), true);
56         this.description = description;
57         this.units = units;
58         this.rangeStatements = new ArrayList<RangeConstraint>();
59         final String rangeDescription = "Integer values between " + minRange + " and " + maxRange + ", inclusively.";
60         this.rangeStatements.add(BaseConstraints.rangeConstraint(minRange, maxRange, rangeDescription,
61                 "https://tools.ietf.org/html/rfc6020#section-9.2.4"));
62     }
63
64     @Override
65     public String getUnits() {
66         return units;
67     }
68
69     @Override
70     public QName getQName() {
71         return name;
72     }
73
74     @Override
75     public SchemaPath getPath() {
76         return path;
77     }
78
79     @Override
80     public String getDescription() {
81         return description;
82     }
83
84     @Override
85     public String getReference() {
86         return REFERENCE;
87     }
88
89     @Override
90     public Status getStatus() {
91         return Status.CURRENT;
92     }
93
94     @Override
95     public List<RangeConstraint> getRangeStatements() {
96         return rangeStatements;
97     }
98
99     @Override
100     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
101         return Collections.emptyList();
102     }
103
104     @Override
105     public int hashCode() {
106         final int prime = 31;
107         int result = 1;
108         result = prime * result + ((description == null) ? 0 : description.hashCode());
109         result = prime * result + ((name == null) ? 0 : name.hashCode());
110         result = prime * result + ((path == null) ? 0 : path.hashCode());
111         result = prime * result + ((rangeStatements == null) ? 0 : rangeStatements.hashCode());
112         result = prime * result + ((units == null) ? 0 : units.hashCode());
113         return result;
114     }
115
116     @Override
117     public boolean equals(Object obj) {
118         if (this == obj) {
119             return true;
120         }
121         if (obj == null) {
122             return false;
123         }
124         if (getClass() != obj.getClass()) {
125             return false;
126         }
127         AbstractSignedInteger other = (AbstractSignedInteger) obj;
128         if (description == null) {
129             if (other.description != null) {
130                 return false;
131             }
132         } else if (!description.equals(other.description)) {
133             return false;
134         }
135         if (name == null) {
136             if (other.name != null) {
137                 return false;
138             }
139         } else if (!name.equals(other.name)) {
140             return false;
141         }
142         if (path == null) {
143             if (other.path != null) {
144                 return false;
145             }
146         } else if (!path.equals(other.path)) {
147             return false;
148         }
149         if (rangeStatements == null) {
150             if (other.rangeStatements != null) {
151                 return false;
152             }
153         } else if (!rangeStatements.equals(other.rangeStatements)) {
154             return false;
155         }
156         if (units == null) {
157             if (other.units != null) {
158                 return false;
159             }
160         } else if (!units.equals(other.units)) {
161             return false;
162         }
163         return true;
164     }
165
166     @Override
167     public String toString() {
168         StringBuilder builder = new StringBuilder();
169         builder.append("AbstractInteger [name=");
170         builder.append(name);
171         builder.append(", path=");
172         builder.append(path);
173         builder.append(", description=");
174         builder.append(description);
175         builder.append(", reference=");
176         builder.append(REFERENCE);
177         builder.append(", units=");
178         builder.append(units);
179         builder.append(", rangeStatements=");
180         builder.append(rangeStatements);
181         builder.append("]");
182         return builder.toString();
183     }
184 }