Interface Messages
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<Messages>
,org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
,org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.ChildOf<PcepSessionState>
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,ErrorMessagesGrouping
,ReplyTimeGrouping
@Generated("mdsal-binding-generator")
public interface Messages
extends org.opendaylight.yangtools.yang.binding.ChildOf<PcepSessionState>, org.opendaylight.yangtools.yang.binding.Augmentable<Messages>, ReplyTimeGrouping, ErrorMessagesGrouping
The statistics of PCEP received/sent messages from the PCE point of view.
This class represents the following YANG schema fragment defined in module pcep-session-stats
container messages { uses reply-time-grouping; leaf received-msg-count { type uint32; default 0; } leaf sent-msg-count { type uint32; default 0; } leaf last-sent-msg-timestamp { type uint32; default 0; } leaf unknown-msg-received { type uint16; default 0; } uses error-messages-grouping; }
To create instances of this class use MessagesBuilder
.
- 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 Messages thisObj, Object obj) Default implementation ofObject.equals(Object)
contract for this interface.static int
bindingHashCode
(@NonNull Messages obj) Default implementation ofObject.hashCode()
contract for this interface.static String
bindingToString
(@NonNull Messages obj) Default implementation ofObject.toString()
contract for this interface.org.opendaylight.yangtools.yang.common.Uint32
Return lastSentMsgTimestamp, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint32
Return receivedMsgCount, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint32
Return sentMsgCount, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint16
Return unknownMsgReceived, ornull
if it is not present.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return lastSentMsgTimestamp, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return receivedMsgCount, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return sentMsgCount, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
Return unknownMsgReceived, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.yang.binding.Augmentable
augmentation, augmentationOrElseThrow, augmentationOrElseThrow, augmentations
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.stats.rev171113.ErrorMessagesGrouping
getErrorMessages, nonnullErrorMessages
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.stats.rev171113.ReplyTimeGrouping
getReplyTime, nonnullReplyTime
-
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.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
- Specified by:
implementedInterface
in interfaceErrorMessagesGrouping
- Specified by:
implementedInterface
in interfaceReplyTimeGrouping
-
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
-
getReceivedMsgCount
org.opendaylight.yangtools.yang.common.Uint32 getReceivedMsgCount()Return receivedMsgCount, ornull
if it is not present.Total number of received PCEP messages.
- Returns:
Uint32
receivedMsgCount, ornull
if it is not present.
-
requireReceivedMsgCount
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireReceivedMsgCount()Return receivedMsgCount, guaranteed to be non-null.Total number of received PCEP messages.
- Returns:
Uint32
receivedMsgCount, guaranteed to be non-null.- Throws:
NoSuchElementException
- if receivedMsgCount is not present
-
getSentMsgCount
org.opendaylight.yangtools.yang.common.Uint32 getSentMsgCount()Return sentMsgCount, ornull
if it is not present.Total number of sent PCEP messages.
- Returns:
Uint32
sentMsgCount, ornull
if it is not present.
-
requireSentMsgCount
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireSentMsgCount()Return sentMsgCount, guaranteed to be non-null.Total number of sent PCEP messages.
- Returns:
Uint32
sentMsgCount, guaranteed to be non-null.- Throws:
NoSuchElementException
- if sentMsgCount is not present
-
getLastSentMsgTimestamp
org.opendaylight.yangtools.yang.common.Uint32 getLastSentMsgTimestamp()Return lastSentMsgTimestamp, ornull
if it is not present.The timestamp of last sent message.
- Returns:
Uint32
lastSentMsgTimestamp, ornull
if it is not present.
-
requireLastSentMsgTimestamp
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireLastSentMsgTimestamp()Return lastSentMsgTimestamp, guaranteed to be non-null.The timestamp of last sent message.
- Returns:
Uint32
lastSentMsgTimestamp, guaranteed to be non-null.- Throws:
NoSuchElementException
- if lastSentMsgTimestamp is not present
-
getUnknownMsgReceived
org.opendaylight.yangtools.yang.common.Uint16 getUnknownMsgReceived()Return unknownMsgReceived, ornull
if it is not present.The number of received unknown messages.
- Returns:
Uint16
unknownMsgReceived, ornull
if it is not present.
-
requireUnknownMsgReceived
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireUnknownMsgReceived()Return unknownMsgReceived, guaranteed to be non-null.The number of received unknown messages.
- Returns:
Uint16
unknownMsgReceived, guaranteed to be non-null.- Throws:
NoSuchElementException
- if unknownMsgReceived is not present
-