Class Row<E extends TableSchema<E>>
- java.lang.Object
- 
- org.opendaylight.ovsdb.lib.notation.Row<E>
 
- 
 public class Row<E extends TableSchema<E>> extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description Row()Row(TableSchema<E> tableSchema)Row(TableSchema<E> tableSchema, List<Column<E,?>> columns)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddColumn(String columnName, Column<E,?> data)booleanequals(Object obj)The equals method for Row object should be used with caution.<D> Column<E,D>getColumn(ColumnSchema<E,D> schema)Collection<Column<E,?>>getColumns()TableSchema<E>getTableSchema()inthashCode()The hashCode method for Row object should be used with caution.voidsetTableSchema(TableSchema<E> tableSchema)StringtoString()
 
- 
- 
- 
Constructor Detail- 
Rowpublic Row() 
 - 
Rowpublic Row(TableSchema<E> tableSchema) 
 - 
Rowpublic Row(TableSchema<E> tableSchema, List<Column<E,?>> columns) 
 
- 
 - 
Method Detail- 
getColumnpublic <D> Column<E,D> getColumn(ColumnSchema<E,D> schema) 
 - 
getColumnspublic Collection<Column<E,?>> getColumns() 
 - 
getTableSchemapublic TableSchema<E> getTableSchema() 
 - 
setTableSchemapublic void setTableSchema(TableSchema<E> tableSchema) 
 - 
hashCodepublic int hashCode() The hashCode method for Row object should be used with caution. This method will use all the columns in the row to calculate the hashKey. Hence using this method on a partial Row will return a different hashKey and will not work in most of the use-cases this method might be used.
 - 
equalspublic boolean equals(Object obj) The equals method for Row object should be used with caution. This method will compare all the columns in the row being compared. Hence using this method to compare a partial Row will return false and will not work in most of the use-cases this method might be used.
 
- 
 
-