BUG-4268: clarify length constraint API contract
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / Int64.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 int64 built-in type. <br>
14  * int64 represents integer values between -9223372036854775808 and
15  * 9223372036854775807, inclusively. The Java counterpart of Yang int64 built-in
16  * type is {@link Long}.
17  *
18  * @deprecated Use {@link org.opendaylight.yangtools.yang.model.util.type.BaseTypes#int64Type()} instead
19  */
20 @Deprecated
21 public final class Int64 extends AbstractSignedInteger implements Immutable {
22     private static final String DESCRIPTION = "int64  represents integer values between -9223372036854775808 and 9223372036854775807, inclusively.";
23
24     private Int64() {
25         super(BaseTypes.INT64_QNAME, DESCRIPTION, Long.MIN_VALUE, Long.MAX_VALUE, "");
26     }
27
28
29     private static final Int64 INSTANCE = new Int64();
30
31     /**
32      * Returns default instance of int64 type.
33      * @return default instance of int64 type.
34      */
35     public static Int64 getInstance() {
36         return INSTANCE;
37     }
38
39     @Override
40     public Object getDefaultValue() {
41         return null;
42     }
43
44     @Override
45     public String toString() {
46         return "type " + BaseTypes.INT64_QNAME;
47     }
48 }