Interface Tables

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

    @Generated("mdsal-binding-generator")
    public interface Tables
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Openflow table structure. Here flows are contained.

    This class represents the following YANG schema fragment defined in module flow-node-inventory

     grouping tables {
       list table {
         key id;
         leaf id {
           type uint8;
         }
         list flow {
           key id;
           leaf id {
             type flow-id;
           }
           uses flow:flow;
         }
         list stale-flow {
           key id;
           leaf id {
             type flow-id;
           }
           uses flow:flow;
         }
       }
     }
     
    • 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 Tables> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getTable

        @Nullable Map<TableKey,​Table> getTable()
        Return table, or null if it is not present.
        Returns:
        Map<TableKey, Table> table, or null if it is not present.
      • nonnullTable

        default @NonNull Map<TableKey,​Table> nonnullTable()
        Return table, or an empty list if it is not present.
        Returns:
        Map<TableKey, Table> table, or an empty list if it is not present.