ea6830fa13e90572a7eb2e6c66d89ebec0976bd4
[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  */
19 public final class Int64 extends AbstractSignedInteger implements Immutable {
20     private static final String DESCRIPTION = "int64  represents integer values between -9223372036854775808 and 9223372036854775807, inclusively.";
21
22     private Int64() {
23         super(BaseTypes.INT64_QNAME, DESCRIPTION, Long.MIN_VALUE, Long.MAX_VALUE, "");
24     }
25
26
27     private static final Int64 INSTANCE = new Int64();
28
29     /**
30      * Returns default instance of int64 type.
31      * @return default instance of int64 type.
32      */
33     public static Int64 getInstance() {
34         return INSTANCE;
35     }
36
37     @Override
38     public Object getDefaultValue() {
39         return null;
40     }
41
42     @Override
43     public String toString() {
44         return "type " + BaseTypes.INT64_QNAME;
45     }
46 }