Interface NxLearn

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<NxLearn>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<NxActionLearnGrouping>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    @Generated("mdsal-binding-generator")
    public interface NxLearn
    extends org.opendaylight.yangtools.yang.binding.ChildOf<NxActionLearnGrouping>, org.opendaylight.yangtools.yang.binding.Augmentable<NxLearn>

    This class represents the following YANG schema fragment defined in module openflowplugin-extension-nicira-action

     container nx-learn {
       leaf idle-timeout {
         type uint16;
       }
       leaf hard-timeout {
         type uint16;
       }
       leaf priority {
         type uint16;
       }
       leaf cookie {
         type uint64;
       }
       leaf flags {
         type uint16;
       }
       leaf table-id {
         type uint8;
       }
       leaf fin-idle-timeout {
         type uint16;
       }
       leaf fin-hard-timeout {
         type uint16;
       }
       list flow-mods {
         uses flow-mod-spec;
       }
     }
     
    The schema path to identify an instance is openflowplugin-extension-nicira-action/nx-action-learn-grouping/nx-learn

    To create instances of this class use NxLearnBuilder.

    See Also:
    NxLearnBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<NxLearn> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • bindingHashCode

        static int bindingHashCode​(@NonNull NxLearn obj)
        Default implementation of Object.hashCode() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.
        Parameters:
        obj - Object for which to generate hashCode() result.
        Returns:
        Hash code value of data modeled by this interface.
        Throws:
        NullPointerException - if obj is null
      • bindingEquals

        static boolean bindingEquals​(@NonNull NxLearn thisObj,
                                     Object obj)
        Default implementation of Object.equals(Object) contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.
        Parameters:
        thisObj - Object acting as the receiver of equals invocation
        obj - Object acting as argument to equals invocation
        Returns:
        True if thisObj and obj are considered equal
        Throws:
        NullPointerException - if thisObj is null
      • bindingToString

        static String bindingToString​(@NonNull NxLearn obj)
        Default implementation of Object.toString() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.
        Parameters:
        obj - Object for which to generate toString() result.
        Returns:
        String value of data modeled by this interface.
        Throws:
        NullPointerException - if obj is null
      • getIdleTimeout

        org.opendaylight.yangtools.yang.common.Uint16 getIdleTimeout()
        Return idleTimeout, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 idleTimeout, or null if it is not present.
      • getHardTimeout

        org.opendaylight.yangtools.yang.common.Uint16 getHardTimeout()
        Return hardTimeout, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 hardTimeout, or null if it is not present.
      • getPriority

        org.opendaylight.yangtools.yang.common.Uint16 getPriority()
        Return priority, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 priority, or null if it is not present.
      • getCookie

        org.opendaylight.yangtools.yang.common.Uint64 getCookie()
        Return cookie, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 cookie, or null if it is not present.
      • getFlags

        org.opendaylight.yangtools.yang.common.Uint16 getFlags()
        Return flags, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 flags, or null if it is not present.
      • getTableId

        org.opendaylight.yangtools.yang.common.Uint8 getTableId()
        Return tableId, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 tableId, or null if it is not present.
      • getFinIdleTimeout

        org.opendaylight.yangtools.yang.common.Uint16 getFinIdleTimeout()
        Return finIdleTimeout, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 finIdleTimeout, or null if it is not present.
      • getFinHardTimeout

        org.opendaylight.yangtools.yang.common.Uint16 getFinHardTimeout()
        Return finHardTimeout, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 finHardTimeout, or null if it is not present.
      • getFlowMods

        @Nullable List<FlowMods> getFlowMods()
        Return flowMods, or null if it is not present.
        Returns:
        java.util.List flowMods, or null if it is not present.
      • nonnullFlowMods

        default @NonNull List<FlowMods> nonnullFlowMods()
        Return flowMods, or an empty list if it is not present.
        Returns:
        java.util.List flowMods, or an empty list if it is not present.