Interface ListItem
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<ListItem>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<ListenerTest>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.Identifiable<ListItemKey>
public interface ListItem extends org.opendaylight.yangtools.yang.binding.ChildOf<ListenerTest>, org.opendaylight.yangtools.yang.binding.Augmentable<ListItem>, org.opendaylight.yangtools.yang.binding.Identifiable<ListItemKey>
This class represents the following YANG schema fragment defined in module listener-container
list list-item { key "sip op"; leaf sip { type string; } leaf op { type uint32; } }The schema path to identify an instance is listener-container/listener-test/list-itemTo create instances of this class use
ListItemBuilder.- See Also:
ListItemBuilder,ListItemKey
-
-
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 org.opendaylight.yangtools.yang.common.Uint32getOp()@Nullable StringgetSip()default Class<ListItem>implementedInterface()ListItemKeykey()
-
-
-
Method Detail
-
implementedInterface
default Class<ListItem> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getSip
@Nullable String getSip()
- Returns:
java.lang.Stringsip, ornullif not present
-
getOp
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getOp()
- Returns:
org.opendaylight.yangtools.yang.common.Uint32op, ornullif not present
-
key
ListItemKey key()
- Specified by:
keyin interfaceorg.opendaylight.yangtools.yang.binding.Identifiable<ListItemKey>
-
-