Refactored implementation of getBaseType method for yang built-in types.
[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.yang.common.QName;
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  *
20  */
21 public final class Int32 extends AbstractSignedInteger {
22     private static Int32 instance;
23     private static final QName NAME = BaseTypes.constructQName("int32");
24     private static final String DESCRIPTION = "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
25
26     private Int32() {
27         super(Int32.NAME, Int32.DESCRIPTION, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
28     }
29
30     public static Int32 getInstance() {
31         if (instance == null) {
32             instance = new Int32();
33         }
34         return instance;
35     }
36
37     @Override
38     public Object getDefaultValue() {
39         return null;
40     }
41
42     @Override
43     public String toString() {
44         return "type " + NAME;
45     }
46 }