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, OfHeader
All Known Subinterfaces:
MeterModInput

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

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

 grouping meter-mod {
   uses ofHeader;
   leaf command {
     type oft:meter-mod-command;
   }
   leaf flags {
     type oft:meter-flags;
   }
   leaf meter-id {
     type oft:meter-id;
   }
   list bands {
     uses meter-band-header;
   }
 }
 
  • 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 MeterMod$G> 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
      Specified by:
      implementedInterface in interface OfHeader
    • getCommand

      MeterModCommand getCommand()
      Return command, or null if it is not present.
      Returns:
      MeterModCommand command, or null if it is not present.
    • requireCommand

      default @NonNull MeterModCommand requireCommand()
      Return command, guaranteed to be non-null.
      Returns:
      MeterModCommand command, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if command is not present
    • getFlags

      MeterFlags getFlags()
      Return flags, or null if it is not present.
      Returns:
      MeterFlags flags, or null if it is not present.
    • requireFlags

      default @NonNull MeterFlags requireFlags()
      Return flags, guaranteed to be non-null.
      Returns:
      MeterFlags flags, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if flags is not present
    • getMeterId

      MeterId getMeterId()
      Return meterId, or null if it is not present.
      Returns:
      MeterId meterId, or null if it is not present.
    • requireMeterId

      default @NonNull MeterId requireMeterId()
      Return meterId, guaranteed to be non-null.
      Returns:
      MeterId meterId, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if meterId is not present
    • getBands

      @Nullable List<Bands> getBands()
      Return bands, or null if it is not present.
      Returns:
      List<Bands> bands, or null if it is not present.
    • nonnullBands

      default @NonNull List<Bands> nonnullBands()
      Return bands, or an empty list if it is not present.
      Returns:
      List<Bands> bands, or an empty list if it is not present.