public enum FontUnderline extends Enum<FontUnderline> implements Enumerator
ExcelPackage.getFontUnderline()
Enum Constant and Description |
---|
DOUBLE_ACCOUNTING_LITERAL
The 'Double Accounting' literal object.
|
DOUBLE_LITERAL
The 'Double' literal object.
|
NONE_LITERAL
The 'None' literal object.
|
SINGLE_ACCOUNTING_LITERAL
The 'Single Accounting' literal object.
|
SINGLE_LITERAL
The 'Single' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DOUBLE
The 'Double' literal value.
|
static int |
DOUBLE_ACCOUNTING
The 'Double Accounting' literal value.
|
static int |
NONE
The 'None' literal value.
|
static int |
SINGLE
The 'Single' literal value.
|
static int |
SINGLE_ACCOUNTING
The 'Single Accounting' literal value.
|
static List<FontUnderline> |
VALUES
A public read-only list of all the 'Font Underline' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static FontUnderline |
get(int value)
Returns the 'Font Underline' literal with the specified integer value.
|
static FontUnderline |
get(String literal)
Returns the 'Font Underline' literal with the specified literal value.
|
static FontUnderline |
getByName(String name)
Returns the 'Font Underline' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static FontUnderline |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontUnderline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontUnderline NONE_LITERAL
NONE
public static final FontUnderline SINGLE_LITERAL
SINGLE
public static final FontUnderline DOUBLE_LITERAL
DOUBLE
public static final FontUnderline SINGLE_ACCOUNTING_LITERAL
SINGLE_ACCOUNTING
public static final FontUnderline DOUBLE_ACCOUNTING_LITERAL
DOUBLE_ACCOUNTING
public static final int NONE
NONE_LITERAL
,
Constant Field Valuespublic static final int SINGLE
SINGLE_LITERAL
,
Constant Field Valuespublic static final int DOUBLE
DOUBLE_LITERAL
,
Constant Field Valuespublic static final int SINGLE_ACCOUNTING
SINGLE_ACCOUNTING_LITERAL
,
Constant Field Valuespublic static final int DOUBLE_ACCOUNTING
DOUBLE_ACCOUNTING_LITERAL
,
Constant Field Valuespublic static final List<FontUnderline> VALUES
public static FontUnderline[] values()
for (FontUnderline c : FontUnderline.values()) System.out.println(c);
public static FontUnderline 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 nullpublic static FontUnderline get(String literal)
literal
- the literal.null
.public static FontUnderline getByName(String name)
name
- the name.null
.public static FontUnderline get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<FontUnderline>