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