Interface ErrorSpec
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>
,org.opendaylight.yangtools.binding.BindingObject
,org.opendaylight.yangtools.binding.DataContainer
,org.opendaylight.yangtools.binding.Grouping
- All Known Subinterfaces:
RsvpError
@Generated("mdsal-binding-generator")
public interface ErrorSpec
extends org.opendaylight.yangtools.binding.Grouping
This class represents the following YANG schema fragment defined in module rsvp
grouping error-spec { leaf node { type inet:ip-address-no-zone; } leaf flags { type bits { bit in-place { position 7; } bit not-guilty { position 6; } } } leaf code { type uint8; } leaf value { type uint16; } }
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
This class represents the following YANG schema fragment defined in module rsvp -
Method Summary
Modifier and TypeMethodDescriptionorg.opendaylight.yangtools.yang.common.Uint8
getCode()
Return code, ornull
if it is not present.getFlags()
Return flags, ornull
if it is not present.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone
getNode()
Return node, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint16
getValue()
Return value, ornull
if it is not present.default @NonNull org.opendaylight.yangtools.yang.common.Uint8
Return code, guaranteed to be non-null.default @NonNull ErrorSpec.Flags
Return flags, guaranteed to be non-null.default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone
Return node, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
Return value, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getNode
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone getNode()Return node, ornull
if it is not present.- Returns:
IpAddressNoZone
node, ornull
if it is not present.
-
requireNode
default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone requireNode()Return node, guaranteed to be non-null.- Returns:
IpAddressNoZone
node, guaranteed to be non-null.- Throws:
NoSuchElementException
- if node is not present
-
getFlags
ErrorSpec.Flags getFlags()Return flags, ornull
if it is not present.- Returns:
Flags
flags, ornull
if it is not present.
-
requireFlags
Return flags, guaranteed to be non-null.- Returns:
Flags
flags, guaranteed to be non-null.- Throws:
NoSuchElementException
- if flags is not present
-
getCode
org.opendaylight.yangtools.yang.common.Uint8 getCode()Return code, ornull
if it is not present.- Returns:
Uint8
code, ornull
if it is not present.
-
requireCode
default @NonNull org.opendaylight.yangtools.yang.common.Uint8 requireCode()Return code, guaranteed to be non-null.- Returns:
Uint8
code, guaranteed to be non-null.- Throws:
NoSuchElementException
- if code is not present
-
getValue
org.opendaylight.yangtools.yang.common.Uint16 getValue()Return value, ornull
if it is not present.- Returns:
Uint16
value, ornull
if it is not present.
-
requireValue
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireValue()Return value, guaranteed to be non-null.- Returns:
Uint16
value, guaranteed to be non-null.- Throws:
NoSuchElementException
- if value is not present
-