Class Row<E extends TableSchema<E>>
java.lang.Object
org.opendaylight.ovsdb.lib.notation.Row<E>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier 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
-
Row
public Row() -
Row
-
Row
-
-
Method Details
-
getColumn
-
getColumns
-
addColumn
-
getTableSchema
-
setTableSchema
-
toString
-
hashCode
public 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. -
equals
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.
-