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