Interface EthernetMatchFields

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

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

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

     grouping ethernet-match-fields {
       container ethernet-source {
         presence "Match field is active and set";
         uses mac-address-filter;
       }
       container ethernet-destination {
         presence "Match field is active and set";
         uses mac-address-filter;
       }
       container ethernet-type {
         presence "Match field is active and set";
         leaf type {
           type l2t:ether-type;
         }
       }
     }
     
    • 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 EthernetMatchFields> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getEthernetSource

        EthernetSource getEthernetSource()
        Return ethernetSource, or null if it is not present.
             
                 Ethernet source address.
             
         
        Returns:
        EthernetSource ethernetSource, or null if it is not present.
      • getEthernetDestination

        EthernetDestination getEthernetDestination()
        Return ethernetDestination, or null if it is not present.
             
                 Ethernet destination address.
             
         
        Returns:
        EthernetDestination ethernetDestination, or null if it is not present.
      • getEthernetType

        EthernetType getEthernetType()
        Return ethernetType, or null if it is not present.
             
                 Ethernet frame type.
             
         
        Returns:
        EthernetType ethernetType, or null if it is not present.