java.io.Serializable
, java.lang.Comparable<ProgressFactory.ProgressType>
public static enum ProgressFactory.ProgressType extends java.lang.Enum<ProgressFactory.ProgressType>
Enum Constant | Description |
---|---|
DOTS |
The dots indicator (DotsProgress)
|
SILENT |
The silent indicator (SilentProgress)
|
TEXT |
The text indicator (TextProgress)
|
TEXTBAR |
The text bar indicator (TextBarProgress)
|
Modifier and Type | Method | Description |
---|---|---|
static ProgressFactory.ProgressType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ProgressFactory.ProgressType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressFactory.ProgressType SILENT
public static final ProgressFactory.ProgressType TEXTBAR
public static final ProgressFactory.ProgressType DOTS
public static final ProgressFactory.ProgressType TEXT
public static ProgressFactory.ProgressType[] values()
for (ProgressFactory.ProgressType c : ProgressFactory.ProgressType.values()) System.out.println(c);
public static ProgressFactory.ProgressType 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