Refactored base yang-java types.
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / Uint8.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 import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition;
12
13 /**
14  * Implementation of Yang uint8 built-in type. <br>
15  * uint8 represents integer values between 0 and 255, inclusively.
16  *
17  * @see AbstractUnsignedInteger
18  */
19 public final class Uint8 extends AbstractUnsignedInteger {
20     public static final int MAX_VALUE = 255;
21     private static Uint8 INSTANCE;
22     private static final QName NAME = BaseTypes.constructQName("uint8");
23     private static final String DESCRIPTION = "uint8  represents integer values between 0 and 255, inclusively.";
24
25     private Uint8() {
26         super(NAME, DESCRIPTION, MAX_VALUE, "");
27     }
28
29     public static Uint8 getInstance() {
30         if (INSTANCE == null) {
31             INSTANCE = new Uint8();
32         }
33         return INSTANCE;
34     }
35
36     @Override
37     public UnsignedIntegerTypeDefinition getBaseType() {
38         return this;
39     }
40
41     @Override
42     public Object getDefaultValue() {
43         return null;
44     }
45
46     @Override
47     public String toString() {
48         return "type " + NAME;
49     }
50
51 }