| java.lang.Object org.space4j.indexing.Key
Key | public class Key implements Serializable(Code) | | A key to be used by the Maps of the IndexManager.
|
Method Summary | |
public void | add(Object value) Add a new value for this key.
Compound keys have more than one value. | public boolean | equals(Object obj) | public int | hashCode() |
Key | public Key()(Code) | | Creates a new Key.
|
Key | public Key(int i, String s)(Code) | | Creates a new Compound Key (int + String)
Parameters: i - An integer Parameters: s - An String |
Key | public Key(int i)(Code) | | Creates a new Key (int)
Parameters: i - An integer |
Key | public Key(String s)(Code) | | Creates a new Key (String)
Parameters: s - An String |
add | public void add(Object value)(Code) | | Add a new value for this key.
Compound keys have more than one value.
Parameters: value - The value to be added. |
hashCode | public int hashCode()(Code) | | |
|
|