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