public static enum SupplierFactory.State extends java.lang.Enum<SupplierFactory.State>
| Enum Constant and Description |
|---|
EMPTY |
FORMAT |
FORMAT_RANGE |
RANGE |
| Modifier and Type | Method and Description |
|---|---|
static SupplierFactory.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SupplierFactory.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupplierFactory.State EMPTY
public static final SupplierFactory.State RANGE
public static final SupplierFactory.State FORMAT
public static final SupplierFactory.State FORMAT_RANGE
public static SupplierFactory.State[] values()
for (SupplierFactory.State c : SupplierFactory.State.values()) System.out.println(c);
public static SupplierFactory.State 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 null