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