Package io.aether.utils
Enum AString.Style
- java.lang.Object
-
- java.lang.Enum<AString.Style>
-
- io.aether.utils.AString.Style
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AString.Style>
- Enclosing interface:
- AString
public static enum AString.Style extends java.lang.Enum<AString.Style>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AString.StylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AString.Style[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLEAR
public static final AString.Style CLEAR
-
BRIGHT
public static final AString.Style BRIGHT
-
DIM
public static final AString.Style DIM
-
ITALIC
public static final AString.Style ITALIC
-
UNDERSCORE
public static final AString.Style UNDERSCORE
-
BLINK
public static final AString.Style BLINK
-
UNKNOWN1
public static final AString.Style UNKNOWN1
-
REVERSE
public static final AString.Style REVERSE
-
HIDDEN
public static final AString.Style HIDDEN
-
UNKNOWN2
public static final AString.Style UNKNOWN2
-
CROSSED
public static final AString.Style CROSSED
-
-
Method Detail
-
values
public static AString.Style[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AString.Style c : AString.Style.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AString.Style valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-