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 Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Map<TableKey,Table>getTable()Return table, ornullif it is not present.Class<? extends Tables>implementedInterface()default @NonNull Map<TableKey,Table>nonnullTable()Return table, or an empty list if it is not present.
-
-
-
Method Detail
-
implementedInterface
Class<? extends Tables> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getTable
@Nullable Map<TableKey,Table> getTable()
Return table, ornullif it is not present.- Returns:
Map<TableKey, Table>table, ornullif it is not present.
-
-