private static class IndexMetadataCollector.ColumnKey
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
column
Column name
|
private java.lang.String |
table
Table name
|
| Constructor and Description |
|---|
ColumnKey(java.lang.String table,
java.lang.String column)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o)
Test for equivalence with another object.
|
int |
hashCode()
A hash code implementation consisent with our overridden
equals(Object) method. |
java.lang.String |
toString()
Get string representation of this object.
|
private final java.lang.String table
private final java.lang.String column
ColumnKey(java.lang.String table,
java.lang.String column)
table - Table name.column - Column name.public boolean equals(java.lang.Object o)
equals in class java.lang.Objecto - Another ColumnKey instance.true if o has same table and
column name as this object; else false.public int hashCode()
equals(Object) method.hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object