A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / 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.controller.yang.model.api.type;
9
10 import java.util.List;
11
12 import org.opendaylight.controller.yang.model.api.TypeDefinition;
13
14 /**
15  * IntegerTypeDefinition is interface which represents SIGNED Integer values
16  * defined in Yang language. <br>
17  * The integer built-in types in Yang are int8, int16, int32, int64. They
18  * represent signed integers of different sizes: <br>
19  * <ul>
20  * <li>int8 represents integer values between -128 and 127, inclusively.</li>
21  * <li>int16 represents integer values between -32768 and 32767, inclusively.</li>
22  * <li>int32 represents integer values between -2147483648 and 2147483647,
23  * inclusively.</li>
24  * <li>int64 represents integer values between -9223372036854775808 and
25  * 9223372036854775807, inclusively.</li>
26  * </ul>
27  * 
28  * The Integer Built-In Types are defined in <a
29  * href="https://tools.ietf.org/html/rfc6020#section-9.2"> [RFC-6020]</a>
30  */
31 public interface IntegerTypeDefinition extends
32         TypeDefinition<IntegerTypeDefinition> {
33
34     /**
35      * Returns Range Constraints defined for given Integer Type.
36      * 
37      * @return Range Constraints defined for given Integer Type.
38      */
39     List<RangeConstraint> getRangeStatements();
40 }