Interface ListInRoot
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<ListInRoot>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<Root>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.Identifiable<ListInRootKey>
public interface ListInRoot extends org.opendaylight.yangtools.yang.binding.ChildOf<Root>, org.opendaylight.yangtools.yang.binding.Augmentable<ListInRoot>, org.opendaylight.yangtools.yang.binding.Identifiable<ListInRootKey>
This class represents the following YANG schema fragment defined in module opendaylight-test-bug-3090
list list-in-root { key "leaf-c leaf-a leaf-b"; leaf leaf-a { type string; } leaf leaf-b { type string; } leaf leaf-c { type string; } }The schema path to identify an instance is opendaylight-test-bug-3090/root/list-in-rootTo create instances of this class use
ListInRootBuilder.- See Also:
ListInRootBuilder,ListInRootKey
-
-
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 StringgetLeafA()@Nullable StringgetLeafB()@Nullable StringgetLeafC()default Class<ListInRoot>implementedInterface()ListInRootKeykey()
-
-
-
Method Detail
-
implementedInterface
default Class<ListInRoot> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getLeafA
@Nullable String getLeafA()
- Returns:
java.lang.StringleafA, ornullif not present
-
getLeafB
@Nullable String getLeafB()
- Returns:
java.lang.StringleafB, ornullif not present
-
getLeafC
@Nullable String getLeafC()
- Returns:
java.lang.StringleafC, ornullif not present
-
key
ListInRootKey key()
- Specified by:
keyin interfaceorg.opendaylight.yangtools.yang.binding.Identifiable<ListInRootKey>
-
-