public abstract class TByteHash extends TPrimitiveHashimplements TByteHashingStrategy
| Modifier and Type | Field and Description |
|---|---|
protected TByteHashingStrategy |
_hashingStrategy
strategy used to hash values in this collection
|
protected byte[] |
_set
the set of bytes
|
_states, FREE, FULL, REMOVED_autoCompactionFactor, _autoCompactRemovesRemaining, _free, _loadFactor, _maxSize, _size, DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR| Constructor and Description |
|---|
TByteHash()
Creates a new
TByteHash instance with the default capacity and load factor.
|
TByteHash(int initialCapacity)
Creates a new
TByteHash instance whose capacity is the next highest prime above
initialCapacity + 1 unless that value is already prime.
|
TByteHash(int initialCapacity, float loadFactor)
Creates a new
TByteHash instance with a prime value at or near the specified capacity and load factor.
|
TByteHash(int initialCapacity, float loadFactor, TByteHashingStrategy
Creates a new
TByteHash instance with a prime value at or near the specified capacity and load factor.
|
TByteHash(int initialCapacity, TByteHashingStrategy
Creates a new
TByteHash instance whose capacity is the next highest prime above
initialCapacity + 1 unless that value is already prime.
|
TByteHash(TByteHashingStrategy
Creates a new
TByteHash instance with the default capacity and load factor.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
clone()
|
int |
computeHashCode(byte val)
Default implementation of TByteHashingStrategy: delegates hashing to HashFunctions.hash(byte).
|
boolean |
contains(byte val)
Searches the set for
val
|
boolean |
forEach(TByteProcedure
Executes
procedure for each element in the set.
|
protected int |
index(byte val)
Locates the index of
val.
|
protected int |
insertionIndex(byte val)
Locates the index at which
val can be inserted.
|
protected void |
removeAt(int index)
Releases the element currently stored at
index.
|
protected int |
setUp(int initialCapacity)
initializes the hashtable to a prime capacity which is at least
initialCapacity + 1.
|
capacitycalculateGrownCapacity, clear, compact, ensureCapacity, getAutoCompactionFactor, isEmpty, postInsertHook, readExternal, reenableAutoCompaction, rehash, setAutoCompactionFactor, size, tempDisableAutoCompaction, trimToSize, writeExternalprotected transient byte[] _set
protected TByteHashingStrategy_hashingStrategy
public TByteHash()
TByteHash instance with the default capacity and load factor.
public TByteHash(int initialCapacity)
TByteHash instance whose capacity is the next highest prime above
initialCapacity + 1 unless that value is already prime.
initialCapacity - an
int value
public TByteHash(int initialCapacity,
float loadFactor)
TByteHash instance with a prime value at or near the specified capacity and load factor.
initialCapacity - used to find a prime capacity for the table.
loadFactor - used to calculate the threshold over which rehashing takes place.
public TByteHash(TByteHashingStrategystrategy)
TByteHash instance with the default capacity and load factor.
strategy - used to compute hash codes and to compare keys.
public TByteHash(int initialCapacity,
TByteHashingStrategy strategy)
TByteHash instance whose capacity is the next highest prime above
initialCapacity + 1 unless that value is already prime.
initialCapacity - an
int value
strategy - used to compute hash codes and to compare keys.
public TByteHash(int initialCapacity,
float loadFactor,
TByteHashingStrategy strategy)
TByteHash instance with a prime value at or near the specified capacity and load factor.
initialCapacity - used to find a prime capacity for the table.
loadFactor - used to calculate the threshold over which rehashing takes place.
strategy - used to compute hash codes and to compare keys.
public Objectclone()
clone in class
TPrimitiveHash
protected int setUp(int initialCapacity)
setUp in class
TPrimitiveHash
initialCapacity - an
int value
public boolean contains(byte val)
val - an
byte value
boolean value
public boolean forEach(TByteProcedureprocedure)
procedure - a
TObjectProcedure value
protected void removeAt(int index)
removeAt in class
TPrimitiveHash
index - an
int value
protected int index(byte val)
val - an
byte value
protected int insertionIndex(byte val)
val - an
byte value
int value
public final int computeHashCode(byte val)
computeHashCode in interface
TByteHashingStrategy
val - the value to hash