All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>, 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 final class 
    This class represents the following YANG schema fragment defined in module rsvp
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.opendaylight.yangtools.yang.common.Uint8
    Return code, or null if it is not present.
    Return flags, or null if it is not present.
    org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone
    Return node, or null if it is not present.
    org.opendaylight.yangtools.yang.common.Uint16
    Return value, or null if it is not present.
    Class<? extends ErrorSpec>
     
    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.
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      Class<? extends ErrorSpec> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
      Specified by:
      implementedInterface in interface org.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, or null if it is not present.
      Returns:
      IpAddressNoZone node, or null 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, or null if it is not present.
      Returns:
      Flags flags, or null 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, or null if it is not present.
      Returns:
      Uint8 code, or null 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, or null if it is not present.
      Returns:
      Uint16 value, or null 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