Bug 6414: Fixed DataNodeIterator's traverseModule method
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / 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.yangtools.yang.model.util;
9
10 import org.opendaylight.yangtools.concepts.Immutable;
11
12 /**
13  * Implementation of Yang int32 built-in type. <br>
14  * int32 represents integer values between -2147483648 and 2147483647,
15  * inclusively. The Java counterpart of Yang int32 built-in type is
16  * {@link Integer}.
17  *
18  * @see AbstractSignedInteger
19  * @deprecated Use {@link org.opendaylight.yangtools.yang.model.util.type.BaseTypes#int32Type()} instead
20  */
21 @Deprecated
22 public final class Int32 extends AbstractSignedInteger implements Immutable {
23     private static final String DESCRIPTION = "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
24
25
26     private static final Int32 INSTANCE = new Int32();
27
28     private Int32() {
29         super(BaseTypes.INT32_QNAME, Int32.DESCRIPTION, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
30     }
31
32     /**
33      * Returns default instance of int32 type.
34      * @return default instance of int32 type.
35      */
36     public static Int32 getInstance() {
37         return INSTANCE;
38     }
39
40     @Override
41     public Object getDefaultValue() {
42         return null;
43     }
44
45     @Override
46     public String toString() {
47         return "type " + BaseTypes.INT32_QNAME;
48     }
49
50 }