BUG-865: mark yang-model-util types as deprecated
[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.concepts.Immutable;
11
12 /**
13  * Implementation of Yang uint32 built-in type. <br>
14  * uint32 represents integer values between 0 and 4294967295, inclusively.
15  *
16  * @deprecated Use {@link org.opendaylight.yangtools.yang.model.util.type.BaseTypes#uint32Type()} instead
17  */
18 @Deprecated
19 public final class Uint32 extends AbstractUnsignedInteger implements Immutable {
20     public static final long MAX_VALUE = 4294967295L;
21     private static final String DESCRIPTION = "uint32 represents integer values between 0 and 4294967295, inclusively.";
22
23     private static final Uint32 INSTANCE = new Uint32();
24
25
26     private Uint32() {
27         super(BaseTypes.UINT32_QNAME, DESCRIPTION, MAX_VALUE, "");
28     }
29
30     public static Uint32 getInstance() {
31         return INSTANCE;
32     }
33
34     @Override
35     public Object getDefaultValue() {
36         return null;
37     }
38
39     @Override
40     public String toString() {
41         return "type " + BaseTypes.UINT32_QNAME;
42     }
43
44 }