Class Row<E extends TableSchema<E>>
java.lang.Object
org.opendaylight.ovsdb.lib.notation.Row<E>
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidbooleanThe equals method for Row object should be used with caution.getColumn(ColumnSchema<E, D> schema) Collection<Column<E,?>> inthashCode()The hashCode method for Row object should be used with caution.voidsetTableSchema(TableSchema<E> tableSchema) toString()
- 
Field Details- 
columns
 
- 
- 
Constructor Details- 
Rowpublic Row()
- 
Row
- 
Row
 
- 
- 
Method Details- 
getColumn
- 
getColumns
- 
addColumn
- 
getTableSchema
- 
setTableSchema
- 
toString
- 
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.
- 
equalsThe 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.
 
-