public class IntKeyLongValueTable extends IntArrayBasedKeyTable<long[]>
| Modifier and Type | Field and Description |
|---|---|
static long |
NULL |
| Constructor and Description |
|---|
IntKeyLongValueTable(int capacity) |
| Modifier and Type | Method and Description |
|---|---|
long |
key(int index) |
long[] |
putValue(int index,
long[] value)
Puts, actually overwrites, the value at the given
index. |
long[] |
value(int index)
OPTIONAL operation.
|
clear, hopBits, move, moveHopBit, put, putHopBit, remove, removeHopBitpublic static final long NULL
public long key(int index)
index - the table index to get the key for.Table.nullKey() will be returned.public long[] value(int index)
Tablenull if unsupported.value in interface Table<long[]>value in class IntArrayBasedKeyTable<long[]>null will be returned.public long[] putValue(int index,
long[] value)
Tableindex. This index will contractually be occupied
at the point where the algorithm calls this method. This new value
replaces the existing value at this index.putValue in interface Table<long[]>putValue in class IntArrayBasedKeyTable<long[]>index - the index to put this value in.value - the value to put at this index.Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.