Interface DataContainerChild<K extends YangInstanceIdentifier.PathArgument,V>
-
- Type Parameters:
K
- Path Argument Type which is used to identify nodeV
- Value type
- All Superinterfaces:
Identifiable<K>
,NormalizedNode<K,V>
- All Known Subinterfaces:
AnydataNode<V>
,AnyxmlNode<V>
,AugmentationNode
,ChoiceNode
,ContainerNode
,DOMSourceAnyxmlNode
,ForeignDataNode<K,V>
,LeafNode<T>
,LeafSetNode<T>
,MapNode
,MountPointNode
,OrderedLeafSetNode<T>
,OrderedMapNode
,UnkeyedListNode
,YangModeledAnyXmlNode
- All Known Implementing Classes:
ImmutableContainerNodeBuilder.ImmutableContainerNode
,ImmutableLeafSetNodeBuilder.ImmutableLeafSetNode
,ImmutableMapNodeBuilder.ImmutableMapNode
,ImmutableMountPointNode
,ImmutableOrderedLeafSetNodeBuilder.ImmutableOrderedLeafSetNode
,ImmutableOrderedMapNodeBuilder.ImmutableOrderedMapNode
,ImmutableUnkeyedListNodeBuilder.EmptyImmutableUnkeyedListNode
,ImmutableUnkeyedListNodeBuilder.ImmutableUnkeyedListNode
public interface DataContainerChild<K extends YangInstanceIdentifier.PathArgument,V> extends NormalizedNode<K,V>
Marker interface for direct children ofDataContainerNode
.Implementation notes
This interface should not be implemented directly, but rather using one of its subinterfaces:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description K
getIdentifier()
Locally unique identifier of the node.-
Methods inherited from interface org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode
getNodeType, getValue
-
-
-
-
Method Detail
-
getIdentifier
K getIdentifier()
Description copied from interface:NormalizedNode
Locally unique identifier of the node.- Specified by:
getIdentifier
in interfaceIdentifiable<K extends YangInstanceIdentifier.PathArgument>
- Specified by:
getIdentifier
in interfaceNormalizedNode<K extends YangInstanceIdentifier.PathArgument,V>
- Returns:
- Node identifier, non-null.
-
-