Package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.monitor.rev200120.routers
Interface Router
- All Superinterfaces:
org.opendaylight.yangtools.binding.Augmentable<Router>
,org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
,org.opendaylight.yangtools.binding.BindingObject
,org.opendaylight.yangtools.binding.ChildOf<Routers>
,org.opendaylight.yangtools.binding.DataContainer
,org.opendaylight.yangtools.binding.DataObject
,org.opendaylight.yangtools.binding.EntryObject<Router,
,RouterKey> org.opendaylight.yangtools.binding.Grouping
,org.opendaylight.yangtools.binding.KeyAware<RouterKey>
,Peers
@Generated("mdsal-binding-generator")
public interface Router
extends org.opendaylight.yangtools.binding.ChildOf<Routers>, Peers, org.opendaylight.yangtools.binding.EntryObject<Router,RouterKey>
This class represents the following YANG schema fragment defined in module bmp-monitor
list router { key router-id; leaf name { type string; } leaf description { type string; } leaf info { type string; } leaf router-id { type router-id; } leaf status { type status; } uses peers; }
To create instances of this class use RouterBuilder
.
- 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 Router thisObj, Object obj) Default implementation ofObject.equals(Object)
contract for this interface.static int
bindingHashCode
(@NonNull Router obj) Default implementation ofObject.hashCode()
contract for this interface.static String
bindingToString
(@NonNull Router obj) Default implementation ofObject.toString()
contract for this interface.Return description, ornull
if it is not present.getInfo()
Return info, ornull
if it is not present.getName()
Return name, ornull
if it is not present.Return routerId, ornull
if it is not present.Return status, ornull
if it is not present.key()
default @NonNull String
Return description, guaranteed to be non-null.default @NonNull String
Return info, guaranteed to be non-null.default @NonNull String
Return name, guaranteed to be non-null.default @NonNull RouterId
Return routerId, guaranteed to be non-null.default @NonNull Status
Return status, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.Augmentable
augmentation, augmentationOrElseThrow, augmentationOrElseThrow, augmentations
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bmp.monitor.rev200120.Peers
getPeer, nonnullPeer
-
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
-
key
RouterKey key()- Specified by:
key
in interfaceorg.opendaylight.yangtools.binding.KeyAware<RouterKey>
-
getName
String getName()Return name, ornull
if it is not present.- Returns:
String
name, ornull
if it is not present.
-
requireName
Return name, guaranteed to be non-null.- Returns:
String
name, guaranteed to be non-null.- Throws:
NoSuchElementException
- if name is not present
-
getDescription
String getDescription()Return description, ornull
if it is not present.- Returns:
String
description, ornull
if it is not present.
-
requireDescription
Return description, guaranteed to be non-null.- Returns:
String
description, guaranteed to be non-null.- Throws:
NoSuchElementException
- if description is not present
-
getInfo
String getInfo()Return info, ornull
if it is not present.- Returns:
String
info, ornull
if it is not present.
-
requireInfo
Return info, guaranteed to be non-null.- Returns:
String
info, guaranteed to be non-null.- Throws:
NoSuchElementException
- if info is not present
-
getRouterId
RouterId getRouterId()Return routerId, ornull
if it is not present.- Returns:
RouterId
routerId, ornull
if it is not present.
-
requireRouterId
Return routerId, guaranteed to be non-null.- Returns:
RouterId
routerId, guaranteed to be non-null.- Throws:
NoSuchElementException
- if routerId is not present
-
getStatus
Status getStatus()Return status, ornull
if it is not present.- Returns:
Status
status, ornull
if it is not present.
-
requireStatus
Return status, guaranteed to be non-null.- Returns:
Status
status, guaranteed to be non-null.- Throws:
NoSuchElementException
- if status is not present
-