public static enum Hash.HashType extends Enum<Hash.HashType>
Enum Constant and Description |
---|
ExpHash |
LinearHash |
StandardJava |
Modifier and Type | Method and Description |
---|---|
static Hash.HashType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Hash.HashType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Hash.HashType StandardJava
public static final Hash.HashType LinearHash
public static final Hash.HashType ExpHash
public static Hash.HashType[] values()
for (Hash.HashType c : Hash.HashType.values()) System.out.println(c);
public static Hash.HashType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 The Apache Software Foundation. All rights reserved.