Interface SystemLeafSetNode<T>
-
- Type Parameters:
T
- Type of leaf node values.
- All Superinterfaces:
DataContainerChild
,DistinctNodeContainer<YangInstanceIdentifier.NodeWithValue<?>,LeafSetEntryNode<T>>
,Identifiable<YangInstanceIdentifier.PathArgument>
,ItemOrder<ItemOrder.Unordered>
,ItemOrder.Unordered
,LeafSetNode<T>
,MixinNode
,NormalizedNode
,NormalizedNodeContainer<LeafSetEntryNode<T>>
,OrderingAware
,OrderingAware.System
,PrettyTreeAware
- All Known Implementing Classes:
ImmutableLeafSetNodeBuilder.ImmutableLeafSetNode
public interface SystemLeafSetNode<T> extends LeafSetNode<T>, OrderingAware.System
Node representing set of simple leaf nodes. Node containing instances ofLeafSetEntryNode
.Schema and semantics of this node are described by instance of
LeafListSchemaNode
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.concepts.ItemOrder
ItemOrder.Ordered, ItemOrder.Unordered
-
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.data.api.schema.OrderingAware
OrderingAware.System, OrderingAware.User
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Class<SystemLeafSetNode>
contract()
Return the contract governing thisNormalizedNode
instance.boolean
equals(Object obj)
ItemOrder
has impact onItemOrder.equals(Object)
.int
hashCode()
ItemOrder
has impact onItemOrder.hashCode()
.-
Methods inherited from interface org.opendaylight.yangtools.yang.data.api.schema.DistinctNodeContainer
body, childByArg, findChildByArg, getChildByArg
-
Methods inherited from interface org.opendaylight.yangtools.concepts.ItemOrder.Unordered
itemOrder
-
Methods inherited from interface org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode
getIdentifier
-
Methods inherited from interface org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer
isEmpty, size
-
Methods inherited from interface org.opendaylight.yangtools.yang.data.api.schema.OrderingAware.System
ordering
-
Methods inherited from interface org.opendaylight.yangtools.concepts.PrettyTreeAware
prettyTree
-
-
-
-
Method Detail
-
contract
default Class<SystemLeafSetNode> contract()
Description copied from interface:NormalizedNode
Return the contract governing thisNormalizedNode
instance.- Specified by:
contract
in interfaceLeafSetNode<T>
- Specified by:
contract
in interfaceNormalizedNode
- Returns:
- A class identifying the NormalizedNode contract.
-
hashCode
int hashCode()
Description copied from interface:ItemOrder.Unordered
ItemOrder
has impact onItemOrder.hashCode()
.Hash code contract of
ItemOrder.Unordered
objects must be insensitive to item order, similar toSet.hashCode()
.This contract is also exposed through
ItemOrder.Unordered.itemOrder()
.
-
equals
boolean equals(Object obj)
Description copied from interface:ItemOrder.Unordered
ItemOrder
has impact onItemOrder.equals(Object)
.Equality contract of
ItemOrder.Unordered
objects must be insensitive to item order, similar toSet.equals(Object)
.This contract is also exposed through
ItemOrder.Unordered.itemOrder()
.
-
-