Class Select<E extends TableSchema<E>>
- java.lang.Object
-
- org.opendaylight.ovsdb.lib.operations.Operation<E>
-
- org.opendaylight.ovsdb.lib.operations.Select<E>
-
- All Implemented Interfaces:
ConditionalOperation
public class Select<E extends TableSchema<E>> extends Operation<E> implements ConditionalOperation
-
-
Constructor Summary
Constructors Constructor Description Select(TableSchema<E> schema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCondition(Condition condition)
<D,C extends TableSchema<C>>
Select<E>column(ColumnSchema<C,D> columnSchema)
List<String>
getColumns()
List<Condition>
getWhere()
Select
on(TableSchema schema)
void
setColumns(List<String> columns)
void
setWhere(List<Condition> where)
Where
where(Condition condition)
-
Methods inherited from class org.opendaylight.ovsdb.lib.operations.Operation
getOp, getResult, getTable, getTableSchema, setOp, setResult, setTableSchema, toString
-
-
-
-
Field Detail
-
SELECT
public static final String SELECT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Select
public Select(TableSchema<E> schema)
-
-
Method Detail
-
on
public Select on(TableSchema schema)
-
column
public <D,C extends TableSchema<C>> Select<E> column(ColumnSchema<C,D> columnSchema)
-
addCondition
public void addCondition(Condition condition)
- Specified by:
addCondition
in interfaceConditionalOperation
-
-