Package net.eternalclient.api.rs
Interface RSNodeHashTable
-
- All Superinterfaces:
java.lang.Iterable
,RSHashTable
public interface RSNodeHashTable extends RSHashTable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RSNode
first()
RSNode
get(long value)
Gets a node by its hash value.RSNode[]
getBuckets()
int
getSize()
RSNode
next()
-
Methods inherited from interface net.eternalclient.api.rs.RSHashTable
getNodes
-
-
-
-
Method Detail
-
get
RSNode get(long value)
Description copied from interface:RSHashTable
Gets a node by its hash value.- Specified by:
get
in interfaceRSHashTable
- Parameters:
value
- the node value- Returns:
- the associated node
-
first
RSNode first()
-
next
RSNode next()
-
getSize
int getSize()
-
getBuckets
RSNode[] getBuckets()
-
-