org.basex.util
Class Map
java.lang.Object
org.basex.util.Set
org.basex.util.Map
public final class Map
- extends Set
This is a simple hash map, extending the even simpler
hash set.
- Author:
- Workgroup DBIS, University of Konstanz 2005-07, ISC License, Christian Gruen
| Fields inherited from class org.basex.util.Set |
size |
|
Constructor Summary |
Map()
|
|
Method Summary |
void |
add(byte[] key,
byte[] val)
Indexes the specified keys and values. |
byte[] |
value(byte[] key)
Returns the value for the specified key. |
byte[] |
value(int p)
Returns the specified value. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Map
public Map()
add
public void add(byte[] key,
byte[] val)
- Indexes the specified keys and values.
- Parameters:
key - keyval - value
value
public byte[] value(byte[] key)
- Returns the value for the specified key.
- Parameters:
key - key to be found
- Returns:
- value or null if nothing was found
value
public byte[] value(int p)
- Returns the specified value.
- Parameters:
p - value index
- Returns:
- value