A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Uint32.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 org.opendaylight.controller.yang.common.QName;
11 import org.opendaylight.controller.yang.model.api.SchemaPath;
12 import org.opendaylight.controller.yang.model.api.type.UnsignedIntegerTypeDefinition;
13
14 /**
15  * Implementation of Yang uint32 built-in type. <br>
16  * uint32 represents integer values between 0 and 4294967295, inclusively.
17  *
18  */
19 public final class Uint32 extends AbstractUnsignedInteger {
20     public static final long MAX_VALUE = 4294967295L;
21     private static final QName name = BaseTypes.constructQName("uint32");
22     private final Long defaultValue = null;
23     private static final String description = "uint32 represents integer values between 0 and 4294967295, inclusively.";
24     private final UnsignedIntegerTypeDefinition baseType;
25
26     public Uint32(final SchemaPath path) {
27         super(path, name, description, MAX_VALUE, "");
28         this.baseType = this;
29     }
30
31     /*
32      * (non-Javadoc)
33      *
34      * @see
35      * org.opendaylight.controller.yang.model.api.TypeDefinition#getBaseType()
36      */
37     @Override
38     public UnsignedIntegerTypeDefinition getBaseType() {
39         return baseType;
40     }
41
42     /*
43      * (non-Javadoc)
44      *
45      * @see
46      * org.opendaylight.controller.yang.model.api.TypeDefinition#getDefaultValue
47      * ()
48      */
49     @Override
50     public Object getDefaultValue() {
51         return defaultValue;
52     }
53
54     @Override
55     public int hashCode() {
56         final int prime = 31;
57         int result = super.hashCode();
58         result = prime * result + ((defaultValue == null) ? 0 : defaultValue.hashCode());
59         return result;
60     }
61
62     @Override
63     public boolean equals(Object obj) {
64         if (this == obj) {
65             return true;
66         }
67         if (!super.equals(obj)) {
68             return false;
69         }
70         if (getClass() != obj.getClass()) {
71             return false;
72         }
73         Uint32 other = (Uint32) obj;
74         if (defaultValue == null) {
75             if (other.defaultValue != null) {
76                 return false;
77             }
78         } else if (!defaultValue.equals(other.defaultValue)) {
79             return false;
80         }
81         return true;
82     }
83
84     @Override
85     public String toString() {
86         StringBuilder builder = new StringBuilder();
87         builder.append("Uint32 [defaultValue=");
88         builder.append(defaultValue);
89         builder.append(", AbstractInteger=");
90         builder.append(super.toString());
91         builder.append("]");
92         return builder.toString();
93     }
94
95 }