public interface BooleanContainer extends ChildOf<FooData>, Augmentable<BooleanContainer>
This class represents the following YANG schema fragment defined in module foo
container boolean-container { list boolean-list { key "boolean-leaf-1 boolean-leaf-2"; leaf boolean-leaf-1 { type boolean; } leaf boolean-leaf-2 { type boolean; } } list boolean-list-int { key boolean-leaf-int; leaf boolean-leaf-int { type int8; } } }The schema path to identify an instance is foo/boolean-container
To create instances of this class use BooleanContainerBuilder
.
BooleanContainerBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<BooleanList> |
getBooleanList() |
@Nullable List<BooleanListInt> |
getBooleanListInt() |
default @NonNull List<BooleanList> |
nonnullBooleanList() |
default @NonNull List<BooleanListInt> |
nonnullBooleanListInt() |
getImplementedInterface
augmentation
@Nullable List<BooleanList> getBooleanList()
java.util.List
booleanList
, or null
if not presentdefault @NonNull List<BooleanList> nonnullBooleanList()
java.util.List
booleanList
, or an empty list if it is not present@Nullable List<BooleanListInt> getBooleanListInt()
java.util.List
booleanListInt
, or null
if not presentdefault @NonNull List<BooleanListInt> nonnullBooleanListInt()
java.util.List
booleanListInt
, or an empty list if it is not presentCopyright © 2019 OpenDaylight. All rights reserved.