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