private static enum MultimapBuilder.LinkedListSupplier extends java.lang.Enum<MultimapBuilder.LinkedListSupplier> implements Supplier<java.util.List<?>>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<?> |
get()
Retrieves an instance of the appropriate type.
|
static <V> Supplier<java.util.List<V>> |
instance() |
static MultimapBuilder.LinkedListSupplier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultimapBuilder.LinkedListSupplier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultimapBuilder.LinkedListSupplier INSTANCE
public static MultimapBuilder.LinkedListSupplier[] values()
for (MultimapBuilder.LinkedListSupplier c : MultimapBuilder.LinkedListSupplier.values()) System.out.println(c);
public static MultimapBuilder.LinkedListSupplier 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 namejava.lang.NullPointerException - if the argument is nullpublic static <V> Supplier<java.util.List<V>> instance()
public java.util.List<?> get()
Supplierget in interface java.util.function.Supplier<java.util.List<?>>