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
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QNameYANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionstatic booleanbindingEquals(@NonNull IsisNodeAttributes thisObj, Object obj) Default implementation ofObject.equals(Object)contract for this interface.static intbindingHashCode(@NonNull IsisNodeAttributes obj) Default implementation ofObject.hashCode()contract for this interface.static StringbindingToString(@NonNull IsisNodeAttributes obj) Default implementation ofObject.toString()contract for this interface.getIso()Return iso, ornullif it is not present.@Nullable Set<org.opendaylight.yangtools.yang.common.Uint8> Return multiTopologyId, ornullif it is not present.getNet()Return net, ornullif it is not present.Return routerType, ornullif it is not present.getTed()Return ted, ornullif it is not present.default Class<IsisNodeAttributes> @NonNull IsoReturn iso, or an empty instance if it is not present.@NonNull TedReturn 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:
implementedInterfacein interfaceorg.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>- Specified by:
implementedInterfacein 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- ifobjisnull
-
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- ifthisObjisnull
-
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:
Stringvalue of data modeled by this interface.- Throws:
NullPointerException- ifobjisnull
-
getIso
Iso getIso()Return iso, ornullif it is not present.- Returns:
Isoiso, ornullif it is not present.
-
nonnullIso
@NonNull Iso nonnullIso()Return iso, or an empty instance if it is not present.- Returns:
Isoiso, or an empty instance if it is not present.
-
getNet
Return net, ornullif it is not present.- Returns:
Set<IsoNetId>net, ornullif 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, ornullif it is not present.List of Multi Topology Identifier upto 128 (0-127). RFC 4915- Returns:
Set<Uint8>multiTopologyId, ornullif 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, ornullif it is not present.- Returns:
RouterTyperouterType, ornullif it is not present.
-
getTed
Ted getTed()Return ted, ornullif it is not present.- Returns:
Tedted, ornullif it is not present.
-
nonnullTed
@NonNull Ted nonnullTed()Return ted, or an empty instance if it is not present.- Returns:
Tedted, or an empty instance if it is not present.
-