Interface IsisNodeAttributes
- All Superinterfaces:
org.opendaylight.yangtools.binding.Augmentable<IsisNodeAttributes>
,org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
,org.opendaylight.yangtools.binding.BindingObject
,org.opendaylight.yangtools.binding.ChildOf<IsisNodeAttributes>
,org.opendaylight.yangtools.binding.DataContainer
,org.opendaylight.yangtools.binding.DataObject
@Generated("mdsal-binding-generator")
public interface IsisNodeAttributes
extends org.opendaylight.yangtools.binding.ChildOf<IsisNodeAttributes>, org.opendaylight.yangtools.binding.Augmentable<IsisNodeAttributes>
This class represents the following YANG schema fragment defined in module isis-topology
container isis-node-attributes { container iso { leaf iso-system-id { type iso-system-id; } leaf iso-pseudonode-id { default 00; type iso-pseudonode-id; } } leaf-list net { max-elements 3; type iso-net-id; } leaf-list multi-topology-id { max-elements 128; type uint8 { range 0..127; } } choice router-type { case level-2 { leaf level-2 { type empty; } } case level-1 { leaf level-1 { type empty; } } case level-1-2 { leaf level-1-2 { type empty; } } } container ted { uses ted:ted-node-attributes; } }
To create instances of this class use IsisNodeAttributesBuilder
.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QName
YANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
bindingEquals
(@NonNull IsisNodeAttributes thisObj, Object obj) Default implementation ofObject.equals(Object)
contract for this interface.static int
bindingHashCode
(@NonNull IsisNodeAttributes obj) Default implementation ofObject.hashCode()
contract for this interface.static String
bindingToString
(@NonNull IsisNodeAttributes obj) Default implementation ofObject.toString()
contract for this interface.getIso()
Return iso, ornull
if it is not present.@Nullable Set
<org.opendaylight.yangtools.yang.common.Uint8> Return multiTopologyId, ornull
if it is not present.getNet()
Return net, ornull
if it is not present.Return routerType, ornull
if it is not present.getTed()
Return ted, ornull
if it is not present.default Class
<IsisNodeAttributes> @NonNull Iso
Return iso, or an empty instance if it is not present.@NonNull Ted
Return ted, or an empty instance if it is not present.default @NonNull Set
<org.opendaylight.yangtools.yang.common.Uint8> Return multiTopologyId, guaranteed to be non-null.Return net, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.Augmentable
augmentation, augmentationOrElseThrow, augmentationOrElseThrow, augmentations
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.binding.DataObject
-
bindingHashCode
Default implementation ofObject.hashCode()
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.- Parameters:
obj
- Object for which to generate hashCode() result.- Returns:
- Hash code value of data modeled by this interface.
- Throws:
NullPointerException
- ifobj
isnull
-
bindingEquals
Default implementation ofObject.equals(Object)
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.- Parameters:
thisObj
- Object acting as the receiver of equals invocationobj
- Object acting as argument to equals invocation- Returns:
- True if thisObj and obj are considered equal
- Throws:
NullPointerException
- ifthisObj
isnull
-
bindingToString
Default implementation ofObject.toString()
contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.- Parameters:
obj
- Object for which to generate toString() result.- Returns:
String
value of data modeled by this interface.- Throws:
NullPointerException
- ifobj
isnull
-
getIso
Iso getIso()Return iso, ornull
if it is not present.- Returns:
Iso
iso, ornull
if it is not present.
-
nonnullIso
@NonNull Iso nonnullIso()Return iso, or an empty instance if it is not present.- Returns:
Iso
iso, or an empty instance if it is not present.
-
getNet
Return net, ornull
if it is not present.- Returns:
Set<IsoNetId>
net, ornull
if it is not present.
-
requireNet
Return net, guaranteed to be non-null.- Returns:
Set<IsoNetId>
net, guaranteed to be non-null.- Throws:
NoSuchElementException
- if net is not present
-
getMultiTopologyId
@Nullable Set<org.opendaylight.yangtools.yang.common.Uint8> getMultiTopologyId()Return multiTopologyId, ornull
if it is not present.List of Multi Topology Identifier upto 128 (0-127). RFC 4915
- Returns:
Set<Uint8>
multiTopologyId, ornull
if it is not present.
-
requireMultiTopologyId
Return multiTopologyId, guaranteed to be non-null.List of Multi Topology Identifier upto 128 (0-127). RFC 4915
- Returns:
Set<Uint8>
multiTopologyId, guaranteed to be non-null.- Throws:
NoSuchElementException
- if multiTopologyId is not present
-
getRouterType
RouterType getRouterType()Return routerType, ornull
if it is not present.- Returns:
RouterType
routerType, ornull
if it is not present.
-
getTed
Ted getTed()Return ted, ornull
if it is not present.- Returns:
Ted
ted, ornull
if it is not present.
-
nonnullTed
@NonNull Ted nonnullTed()Return ted, or an empty instance if it is not present.- Returns:
Ted
ted, or an empty instance if it is not present.
-