|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HashFunction.HashType>
cz.cuni.jagrlib.HashFunction.HashType
public static enum HashFunction.HashType
Implemented hash-functions.
Enum Constant Summary | |
---|---|
HASH_AP
Arash Partow. |
|
HASH_BKDR
Brian Kernighan, Dennis Ritchie. |
|
HASH_DEK
Donald E. |
|
HASH_DJB
Daniel J. |
|
HASH_ELF
ELF (UNIX). |
|
HASH_JS
Justin Sobel. |
|
HASH_LCG
LCG-based. |
|
HASH_PJW
Peter J. |
|
HASH_RS
Robert Sedgwick. |
|
HASH_SDBM
SDBM database. |
Method Summary | |
---|---|
static HashFunction.HashType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HashFunction.HashType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final HashFunction.HashType HASH_LCG
public static final HashFunction.HashType HASH_RS
public static final HashFunction.HashType HASH_JS
public static final HashFunction.HashType HASH_PJW
public static final HashFunction.HashType HASH_ELF
public static final HashFunction.HashType HASH_BKDR
public static final HashFunction.HashType HASH_SDBM
public static final HashFunction.HashType HASH_DJB
public static final HashFunction.HashType HASH_DEK
public static final HashFunction.HashType HASH_AP
Method Detail |
---|
public static HashFunction.HashType[] values()
for (HashFunction.HashType c : HashFunction.HashType.values()) System.out.println(c);
public static HashFunction.HashType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |