public enum HashMapSupplier extends Enum<HashMapSupplier> implements Callable<Map<Object,Object>>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
static <K,V> Callable<Map<K,V>> |
asCallable() |
Map<Object,Object> |
call() |
static HashMapSupplier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashMapSupplier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashMapSupplier INSTANCE
public static HashMapSupplier[] values()
for (HashMapSupplier c : HashMapSupplier.values()) System.out.println(c);
public static HashMapSupplier 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 JBoss by Red Hat. All rights reserved.