Interface NestedList
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<NestedList>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<TopLevelList>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.Identifiable<NestedListKey>
public interface NestedList extends org.opendaylight.yangtools.yang.binding.ChildOf<TopLevelList>, org.opendaylight.yangtools.yang.binding.Augmentable<NestedList>, org.opendaylight.yangtools.yang.binding.Identifiable<NestedListKey>
A list of service functions that compose the service chainThis class represents the following YANG schema fragment defined in module opendaylight-mdsal-list-test
list nested-list { key name; leaf name { type string; } leaf type { type string; } ordered-by user; }The schema path to identify an instance is opendaylight-mdsal-list-test/two-level-list/top-level-list/nested-listTo create instances of this class use
NestedListBuilder.- See Also:
NestedListBuilder,NestedListKey
-
-
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 StringgetName()@Nullable StringgetType()default Class<NestedList>implementedInterface()NestedListKeykey()
-
-
-
Method Detail
-
implementedInterface
default Class<NestedList> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getName
@Nullable String getName()
- Returns:
java.lang.Stringname, ornullif not present
-
getType
@Nullable String getType()
- Returns:
java.lang.Stringtype, ornullif not present
-
key
NestedListKey key()
- Specified by:
keyin interfaceorg.opendaylight.yangtools.yang.binding.Identifiable<NestedListKey>
-
-