public enum HashImplementation extends Enum<HashImplementation>
| Enum Constant and Description |
|---|
ConcurrentHashMap |
HighscalelibNonBlockingHashMap |
| Modifier and Type | Method and Description |
|---|---|
static HashImplementation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashImplementation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashImplementation ConcurrentHashMap
public static final HashImplementation HighscalelibNonBlockingHashMap
public static HashImplementation[] values()
for (HashImplementation c : HashImplementation.values()) System.out.println(c);
public static HashImplementation 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 © 2018 trivago. All rights reserved.