Interface TcpFlagsMatchFields

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

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

    This class represents the following YANG schema fragment defined in module opendaylight-match-types

     grouping tcp-flags-match-fields {
       leaf tcp-flags {
         type uint16;
       }
       leaf tcp-flags-mask {
         type uint16;
       }
     }
     
    • 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 TcpFlagsMatchFields> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getTcpFlags

        org.opendaylight.yangtools.yang.common.Uint16 getTcpFlags()
        Return tcpFlags, or null if it is not present.
             
                 Tcp flags for match
             
         
        Returns:
        Uint16 tcpFlags, or null if it is not present.
      • requireTcpFlags

        default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireTcpFlags()
        Return tcpFlags, guaranteed to be non-null.
             
                 Tcp flags for match
             
         
        Returns:
        Uint16 tcpFlags, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if tcpFlags is not present
      • getTcpFlagsMask

        org.opendaylight.yangtools.yang.common.Uint16 getTcpFlagsMask()
        Return tcpFlagsMask, or null if it is not present.
             
                 Mask for tcp flags
             
         
        Returns:
        Uint16 tcpFlagsMask, or null if it is not present.
      • requireTcpFlagsMask

        default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireTcpFlagsMask()
        Return tcpFlagsMask, guaranteed to be non-null.
             
                 Mask for tcp flags
             
         
        Returns:
        Uint16 tcpFlagsMask, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if tcpFlagsMask is not present