Interface UnorderedContainer
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<UnorderedContainer>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<Lists>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface UnorderedContainer extends org.opendaylight.yangtools.yang.binding.ChildOf<Lists>, org.opendaylight.yangtools.yang.binding.Augmentable<UnorderedContainer>
This class represents the following YANG schema fragment defined in module opendaylight-sal-test-store
container unordered-container { list unordered-list { key name; uses name-value; } }The schema path to identify an instance is opendaylight-sal-test-store/lists/unordered-containerTo create instances of this class use
UnorderedContainerBuilder.- See Also:
UnorderedContainerBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Map<UnorderedListKey,UnorderedList>getUnorderedList()default Class<UnorderedContainer>implementedInterface()default @NonNull Map<UnorderedListKey,UnorderedList>nonnullUnorderedList()
-
-
-
Method Detail
-
implementedInterface
default Class<UnorderedContainer> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getUnorderedList
@Nullable Map<UnorderedListKey,UnorderedList> getUnorderedList()
- Returns:
java.util.MapunorderedList, ornullif not present
-
nonnullUnorderedList
default @NonNull Map<UnorderedListKey,UnorderedList> nonnullUnorderedList()
- Returns:
java.util.MapunorderedList, or an empty list if it is not present
-
-