2dad0c099706c9452edd6873069fa1af2f4e6ffb
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / IntegerTypeDefinition.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.api.type;
9
10 /**
11  * IntegerTypeDefinition is interface which represents SIGNED Integer values defined in YANG language.<br>
12  * The integer built-in types in YANG are int8, int16, int32, int64. They represent signed integers of different
13  * sizes:<br>
14  * <ul>
15  * <li>int8 represents integer values between -128 and 127, inclusively.</li>
16  * <li>int16 represents integer values between -32768 and 32767, inclusively.</li>
17  * <li>int32 represents integer values between -2147483648 and 2147483647, inclusively.</li>
18  * <li>int64 represents integer values between -9223372036854775808 and 9223372036854775807, inclusively.</li>
19  * </ul>
20  *
21  * <p>
22  * The Integer Built-In Types are defined in <a href="https://tools.ietf.org/html/rfc6020#section-9.2"> [RFC-6020]</a>
23  */
24 public interface IntegerTypeDefinition extends RangeRestrictedTypeDefinition<IntegerTypeDefinition> {
25
26 }