public interface TwoLevelList extends DataObject
This class represents the following YANG schema fragment defined in module opendaylight-mdsal-binding-test
grouping two-level-list { list top-level-list { key name; leaf name { type string; } choice choice-in-list { case simple-case { leaf simple { type string; } } } list nested-list { key name; leaf name { type string; } leaf type { type string; } ordered-by user; } } leaf-list top-level-leaf-list { type string; } leaf-list top-level-ordered-leaf-list { type string; ordered-by user; } list choice-list { key name; leaf name { type string; } choice choice-in-choice-list; } }The schema path to identify an instance is opendaylight-mdsal-binding-test/two-level-list
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<ChoiceList> |
getChoiceList() |
@Nullable List<String> |
getTopLevelLeafList() |
@Nullable List<TopLevelList> |
getTopLevelList()
Top Level List
|
@Nullable List<String> |
getTopLevelOrderedLeafList() |
default @NonNull List<ChoiceList> |
nonnullChoiceList() |
default @NonNull List<TopLevelList> |
nonnullTopLevelList() |
getImplementedInterface
@Nullable List<TopLevelList> getTopLevelList()
java.util.List
topLevelList
, or null
if not presentdefault @NonNull List<TopLevelList> nonnullTopLevelList()
java.util.List
topLevelList
, or an empty list if it is not present@Nullable List<String> getTopLevelLeafList()
java.util.List
topLevelLeafList
, or null
if not present@Nullable List<String> getTopLevelOrderedLeafList()
java.util.List
topLevelOrderedLeafList
, or null
if not present@Nullable List<ChoiceList> getChoiceList()
java.util.List
choiceList
, or null
if not presentdefault @NonNull List<ChoiceList> nonnullChoiceList()
java.util.List
choiceList
, or an empty list if it is not presentCopyright © 2019 OpenDaylight. All rights reserved.