Interface Error

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, OfHeader
    All Known Subinterfaces:
    ErrorMessage

    @Generated("mdsal-binding-generator")
    public interface Error
    extends org.opendaylight.yangtools.yang.binding.DataObject, OfHeader

    This class represents the following YANG schema fragment defined in module openflow-protocol

     grouping error {
       uses ofHeader;
       leaf type {
         type uint16;
       }
       leaf code {
         type uint16;
       }
       leaf type-string {
         type string;
       }
       leaf code-string {
         type string;
       }
       leaf data {
         type binary;
       }
     }
     
    • 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.
    • Field Detail

      • QNAME

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

      • implementedInterface

        Class<? extends Error> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface OfHeader
      • getType

        org.opendaylight.yangtools.yang.common.Uint16 getType()
        Return type, or null if it is not present.
        Returns:
        Uint16 type, or null if it is not present.
      • requireType

        default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireType()
        Return type, guaranteed to be non-null.
        Returns:
        Uint16 type, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if type is not present
      • getCode

        org.opendaylight.yangtools.yang.common.Uint16 getCode()
        Return code, or null if it is not present.
        Returns:
        Uint16 code, or null if it is not present.
      • requireCode

        default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireCode()
        Return code, guaranteed to be non-null.
        Returns:
        Uint16 code, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if code is not present
      • getTypeString

        String getTypeString()
        Return typeString, or null if it is not present.
        Returns:
        String typeString, or null if it is not present.
      • requireTypeString

        default @NonNull String requireTypeString()
        Return typeString, guaranteed to be non-null.
        Returns:
        String typeString, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if typeString is not present
      • getCodeString

        String getCodeString()
        Return codeString, or null if it is not present.
        Returns:
        String codeString, or null if it is not present.
      • requireCodeString

        default @NonNull String requireCodeString()
        Return codeString, guaranteed to be non-null.
        Returns:
        String codeString, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if codeString is not present
      • getData

        byte[] getData()
        Return data, or null if it is not present.
        Returns:
        byte[] data, or null if it is not present.
      • requireData

        default byte @NonNull [] requireData()
        Return data, guaranteed to be non-null.
        Returns:
        byte[] data, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if data is not present