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