public enum ProgressBarStyle extends Enum<ProgressBarStyle>
| Enum Constant and Description |
|---|
ASCII
Use only ASCII characters to draw the progress bar.
|
COLORFUL_UNICODE_BLOCK |
UNICODE_BLOCK
Use Unicode block characters to draw the progress bar.
|
| Modifier and Type | Method and Description |
|---|---|
static ProgressBarStyle |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.