Interface TwoLevelList
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
GetTopOutput,PutTopInput,Top,TwoLevelListChanged
@Generated("mdsal-binding-generator") public interface TwoLevelList extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module opendaylight-mdsal-list-test
grouping two-level-list { list top-level-list { key name; leaf name { type string; } list nested-list { key name; leaf name { type string; } leaf type { type string; } ordered-by user; } } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Map<TopLevelListKey,TopLevelList>getTopLevelList()Return topLevelList, ornullif it is not present.Class<? extends TwoLevelList>implementedInterface()default @NonNull Map<TopLevelListKey,TopLevelList>nonnullTopLevelList()Return topLevelList, or an empty list if it is not present.
-
-
-
Method Detail
-
implementedInterface
Class<? extends TwoLevelList> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getTopLevelList
@Nullable Map<TopLevelListKey,TopLevelList> getTopLevelList()
Return topLevelList, ornullif it is not present.Top Level List- Returns:
Map<TopLevelListKey, TopLevelList>topLevelList, ornullif it is not present.
-
nonnullTopLevelList
default @NonNull Map<TopLevelListKey,TopLevelList> nonnullTopLevelList()
Return topLevelList, or an empty list if it is not present.- Returns:
Map<TopLevelListKey, TopLevelList>topLevelList, or an empty list if it is not present.
-
-