Use a pre-compiled pattern in SchemaContextUtil
[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  *
20  */
21 public final class Int32 extends AbstractSignedInteger implements Immutable {
22     private static final String DESCRIPTION = "int32  represents integer values between -2147483648 and 2147483647, inclusively.";
23
24
25     private static final Int32 INSTANCE = new Int32();
26
27     private Int32() {
28         super(BaseTypes.INT32_QNAME, Int32.DESCRIPTION, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
29     }
30
31     /**
32      * Returns default instance of int32 type.
33      * @return default instance of int32 type.
34      */
35     public static Int32 getInstance() {
36         return INSTANCE;
37     }
38
39     @Override
40     public Object getDefaultValue() {
41         return null;
42     }
43
44     @Override
45     public String toString() {
46         return "type " + BaseTypes.INT32_QNAME;
47     }
48
49 }