public enum ProgressActionType extends java.lang.Enum<ProgressActionType>
| Enum Constant and Description |
|---|
INDETERMINATE |
MAX_PROGRESS |
PROGRESS |
STEP |
| Modifier and Type | Field and Description |
|---|---|
java.util.function.BiConsumer<ProgressManager,java.lang.String> |
acceptor |
char |
identifier |
static java.util.Map<java.lang.Character,ProgressActionType> |
TYPES |
| Modifier and Type | Method and Description |
|---|---|
static ProgressActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgressActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressActionType STEP
public static final ProgressActionType PROGRESS
public static final ProgressActionType MAX_PROGRESS
public static final ProgressActionType INDETERMINATE
public static final java.util.Map<java.lang.Character,ProgressActionType> TYPES
public final char identifier
public final java.util.function.BiConsumer<ProgressManager,java.lang.String> acceptor
public static ProgressActionType[] values()
for (ProgressActionType c : ProgressActionType.values()) System.out.println(c);
public static ProgressActionType 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