public static enum StyledTextOutput.Style extends Enum<StyledTextOutput.Style>
| Enum Constant and Description |
|---|
Description
The description of something
|
Error
General purpose error text
|
Failure
General purpose failure message
|
Header
A header.
|
Identifier
An identifier for something
|
Info
General purpose informational text
|
Normal
Regular text.
|
ProgressStatus
Operation progress status
|
Success
General purpose success message
|
UserInput
User input
|
| Modifier and Type | Method and Description |
|---|---|
static StyledTextOutput.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StyledTextOutput.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StyledTextOutput.Style Normal
public static final StyledTextOutput.Style Header
public static final StyledTextOutput.Style UserInput
public static final StyledTextOutput.Style Identifier
public static final StyledTextOutput.Style Description
public static final StyledTextOutput.Style ProgressStatus
public static final StyledTextOutput.Style Success
public static final StyledTextOutput.Style Failure
public static final StyledTextOutput.Style Info
public static final StyledTextOutput.Style Error
public static StyledTextOutput.Style[] values()
for (StyledTextOutput.Style c : StyledTextOutput.Style.values()) System.out.println(c);
public static StyledTextOutput.Style 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 © 2013. All rights reserved