Interface ErrorSpec
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
RsvpError
@Generated("mdsal-binding-generator") public interface ErrorSpec extends org.opendaylight.yangtools.yang.binding.DataObject
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
Nested Classes Modifier and Type Interface Description static class
ErrorSpec.Flags
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QName
QNAME
YANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description org.opendaylight.yangtools.yang.common.Uint8
getCode()
Return code, ornull
if it is not present.ErrorSpec.Flags
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.Class<? extends ErrorSpec>
implementedInterface()
default @NonNull org.opendaylight.yangtools.yang.common.Uint8
requireCode()
Return code, guaranteed to be non-null.default @NonNull ErrorSpec.Flags
requireFlags()
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
requireNode()
Return node, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
requireValue()
Return value, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends ErrorSpec> implementedInterface()
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataContainer
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
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
default @NonNull ErrorSpec.Flags 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
-
-