Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / BitsTypeDefinition.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 import java.util.List;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
13 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
14
15 /**
16  * Makes is possible to access to the individual bits values of this type.
17  */
18 public interface BitsTypeDefinition extends TypeDefinition<BitsTypeDefinition> {
19     /**
20      * Returns all bit values.
21      *
22      * @return list of <code>Bit</code> type instastances with data about all
23      *         individual bits of <code>bits</code> YANG built-in type
24      */
25     @Nonnull List<Bit> getBits();
26
27     /**
28      * Contains the methods for accessing the data about the individual bit of
29      * <code>bits</code> YANG type.
30      */
31     interface Bit extends SchemaNode {
32         /**
33          * Returns the name of the concrete bit.
34          *
35          * @return string with the name of the concrete bit
36          */
37         @Nonnull String getName();
38
39         /**
40          * The position value MUST be in the range 0 to 4294967295, and it MUST
41          * be unique within the bits type.
42          *
43          * @return The position value of bit in range from 0 to 4294967295.
44          */
45         long getPosition();
46     }
47 }