public enum FontCharSet extends Enum<FontCharSet> implements Enumerator
ExcelPackage.getFontCharSet()
Enum Constant and Description |
---|
ANSI_LITERAL
The 'Ansi' literal object.
|
ARABIC_LITERAL
The 'Arabic' literal object.
|
BALTIC_LITERAL
The 'Baltic' literal object.
|
CHINESE_LITERAL
The 'Chinese' literal object.
|
DEFAULT_LITERAL
The 'Default' literal object.
|
EAST_EUROPE_LITERAL
The 'East Europe' literal object.
|
GB_LITERAL
The 'Gb' literal object.
|
GREEK_LITERAL
The 'Greek' literal object.
|
HANGEUL_LITERAL
The 'Hangeul' literal object.
|
HEBREW_LITERAL
The 'Hebrew' literal object.
|
JOHAB_LITERAL
The 'Johab' literal object.
|
MAC_LITERAL
The 'Mac' literal object.
|
OEM_LITERAL
The 'Oem' literal object.
|
RUSSIAN_LITERAL
The 'Russian' literal object.
|
SHIFTJIS_LITERAL
The 'Shiftjis' literal object.
|
SYMBOL_LITERAL
The 'Symbol' literal object.
|
THAI_LITERAL
The 'Thai' literal object.
|
TURKISH_LITERAL
The 'Turkish' literal object.
|
VIETNAMESE_LITERAL
The 'Vietnamese' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ANSI
The 'Ansi' literal value.
|
static int |
ARABIC
The 'Arabic' literal value.
|
static int |
BALTIC
The 'Baltic' literal value.
|
static int |
CHINESE
The 'Chinese' literal value.
|
static int |
DEFAULT
The 'Default' literal value.
|
static int |
EAST_EUROPE
The 'East Europe' literal value.
|
static int |
GB
The 'Gb' literal value.
|
static int |
GREEK
The 'Greek' literal value.
|
static int |
HANGEUL
The 'Hangeul' literal value.
|
static int |
HEBREW
The 'Hebrew' literal value.
|
static int |
JOHAB
The 'Johab' literal value.
|
static int |
MAC
The 'Mac' literal value.
|
static int |
OEM
The 'Oem' literal value.
|
static int |
RUSSIAN
The 'Russian' literal value.
|
static int |
SHIFTJIS
The 'Shiftjis' literal value.
|
static int |
SYMBOL
The 'Symbol' literal value.
|
static int |
THAI
The 'Thai' literal value.
|
static int |
TURKISH
The 'Turkish' literal value.
|
static List<FontCharSet> |
VALUES
A public read-only list of all the 'Font Char Set' enumerators.
|
static int |
VIETNAMESE
The 'Vietnamese' literal value.
|
Modifier and Type | Method and Description |
---|---|
static FontCharSet |
get(int value)
Returns the 'Font Char Set' literal with the specified integer value.
|
static FontCharSet |
get(String literal)
Returns the 'Font Char Set' literal with the specified literal value.
|
static FontCharSet |
getByName(String name)
Returns the 'Font Char Set' 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 FontCharSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontCharSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontCharSet ANSI_LITERAL
ANSI
public static final FontCharSet DEFAULT_LITERAL
DEFAULT
public static final FontCharSet SYMBOL_LITERAL
SYMBOL
public static final FontCharSet ARABIC_LITERAL
ARABIC
public static final FontCharSet BALTIC_LITERAL
BALTIC
public static final FontCharSet CHINESE_LITERAL
CHINESE
public static final FontCharSet EAST_EUROPE_LITERAL
EAST_EUROPE
public static final FontCharSet GB_LITERAL
GB
public static final FontCharSet GREEK_LITERAL
GREEK
public static final FontCharSet HANGEUL_LITERAL
HANGEUL
public static final FontCharSet HEBREW_LITERAL
HEBREW
public static final FontCharSet JOHAB_LITERAL
JOHAB
public static final FontCharSet MAC_LITERAL
MAC
public static final FontCharSet OEM_LITERAL
OEM
public static final FontCharSet RUSSIAN_LITERAL
RUSSIAN
public static final FontCharSet SHIFTJIS_LITERAL
SHIFTJIS
public static final FontCharSet THAI_LITERAL
THAI
public static final FontCharSet TURKISH_LITERAL
TURKISH
public static final FontCharSet VIETNAMESE_LITERAL
VIETNAMESE
public static final int ANSI
ANSI_LITERAL
,
Constant Field Valuespublic static final int DEFAULT
DEFAULT_LITERAL
,
Constant Field Valuespublic static final int SYMBOL
SYMBOL_LITERAL
,
Constant Field Valuespublic static final int ARABIC
ARABIC_LITERAL
,
Constant Field Valuespublic static final int BALTIC
BALTIC_LITERAL
,
Constant Field Valuespublic static final int CHINESE
CHINESE_LITERAL
,
Constant Field Valuespublic static final int EAST_EUROPE
EAST_EUROPE_LITERAL
,
Constant Field Valuespublic static final int GB
GB_LITERAL
,
Constant Field Valuespublic static final int GREEK
GREEK_LITERAL
,
Constant Field Valuespublic static final int HANGEUL
HANGEUL_LITERAL
,
Constant Field Valuespublic static final int HEBREW
HEBREW_LITERAL
,
Constant Field Valuespublic static final int JOHAB
JOHAB_LITERAL
,
Constant Field Valuespublic static final int MAC
MAC_LITERAL
,
Constant Field Valuespublic static final int OEM
OEM_LITERAL
,
Constant Field Valuespublic static final int RUSSIAN
RUSSIAN_LITERAL
,
Constant Field Valuespublic static final int SHIFTJIS
SHIFTJIS_LITERAL
,
Constant Field Valuespublic static final int THAI
THAI_LITERAL
,
Constant Field Valuespublic static final int TURKISH
TURKISH_LITERAL
,
Constant Field Valuespublic static final int VIETNAMESE
VIETNAMESE_LITERAL
,
Constant Field Valuespublic static final List<FontCharSet> VALUES
public static FontCharSet[] values()
for (FontCharSet c : FontCharSet.values()) System.out.println(c);
public static FontCharSet 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 FontCharSet get(String literal)
literal
- the literal.null
.public static FontCharSet getByName(String name)
name
- the name.null
.public static FontCharSet 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<FontCharSet>