Merge "BUG-2962: add DataTreeTip interface and implement it"
[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.concepts.Immutable;
11
12 /**
13  * Implementation of Yang uint8 built-in type. <br>
14  * uint8 represents integer values between 0 and 255, inclusively.
15  *
16  * @see AbstractUnsignedInteger
17  */
18 public final class Uint8 extends AbstractUnsignedInteger implements Immutable {
19     public static final int MAX_VALUE = 255;
20     private static final String DESCRIPTION = "uint8  represents integer values between 0 and 255, inclusively.";
21
22     private static final Uint8 INSTANCE = new Uint8();
23
24     private Uint8() {
25         super(BaseTypes.UINT8_QNAME, DESCRIPTION, MAX_VALUE, "");
26     }
27
28     public static Uint8 getInstance() {
29         return INSTANCE;
30     }
31
32     @Override
33     public Object getDefaultValue() {
34         return null;
35     }
36
37     @Override
38     public String toString() {
39         return "type " + BaseTypes.UINT8_QNAME;
40     }
41
42 }