public static enum SFont.Underline extends Enum<SFont.Underline>
Enum Constant and Description |
---|
DOUBLE |
DOUBLE_ACCOUNTING |
NONE |
SINGLE |
SINGLE_ACCOUNTING |
Modifier and Type | Method and Description |
---|---|
static SFont.Underline |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SFont.Underline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SFont.Underline NONE
public static final SFont.Underline SINGLE
public static final SFont.Underline DOUBLE
public static final SFont.Underline SINGLE_ACCOUNTING
public static final SFont.Underline DOUBLE_ACCOUNTING
public static SFont.Underline[] values()
for (SFont.Underline c : SFont.Underline.values()) System.out.println(c);
public static SFont.Underline 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 © 2020. All rights reserved.