| Enum Constant and Description |
|---|
DASH |
DOTTED |
DOTTED_HEAVY |
DOUBLE |
NONE |
SINGLE |
THICK |
WORDS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
static Underline |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Underline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Underline NONE
public static final Underline WORDS
public static final Underline SINGLE
public static final Underline DOUBLE
public static final Underline THICK
public static final Underline DOTTED
public static final Underline DOTTED_HEAVY
public static final Underline DASH
public static Underline[] values()
for (Underline c : Underline.values()) System.out.println(c);
public static Underline 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 nullpublic java.lang.String getCode()