|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FontCharset> org.apache.poi.ss.usermodel.FontCharset
@Removal(version="4.0") @Deprecated public enum FontCharset
Charset represents the basic set of characters associated with a font (that it can display), and corresponds to the ANSI codepage (8-bit or DBCS) of that character set used by a given language.
Enum Constant Summary | |
---|---|
ANSI
Deprecated. |
|
ARABIC
Deprecated. |
|
BALTIC
Deprecated. |
|
CHINESEBIG5
Deprecated. |
|
DEFAULT
Deprecated. |
|
EASTEUROPE
Deprecated. |
|
GB2312
Deprecated. |
|
GREEK
Deprecated. |
|
HANGEUL
Deprecated. |
|
HEBREW
Deprecated. |
|
JOHAB
Deprecated. |
|
MAC
Deprecated. |
|
OEM
Deprecated. |
|
RUSSIAN
Deprecated. |
|
SHIFTJIS
Deprecated. |
|
SYMBOL
Deprecated. |
|
THAI
Deprecated. |
|
TURKISH
Deprecated. |
|
VIETNAMESE
Deprecated. |
Method Summary | |
---|---|
int |
getValue()
Deprecated. Returns value of this charset |
static FontCharset |
valueOf(int value)
Deprecated. |
static FontCharset |
valueOf(java.lang.String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static FontCharset[] |
values()
Deprecated. Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FontCharset ANSI
public static final FontCharset DEFAULT
public static final FontCharset SYMBOL
public static final FontCharset MAC
public static final FontCharset SHIFTJIS
public static final FontCharset HANGEUL
public static final FontCharset JOHAB
public static final FontCharset GB2312
public static final FontCharset CHINESEBIG5
public static final FontCharset GREEK
public static final FontCharset TURKISH
public static final FontCharset VIETNAMESE
public static final FontCharset HEBREW
public static final FontCharset ARABIC
public static final FontCharset BALTIC
public static final FontCharset RUSSIAN
public static final FontCharset THAI
public static final FontCharset EASTEUROPE
public static final FontCharset OEM
Method Detail |
---|
public static FontCharset[] values()
for (FontCharset c : FontCharset.values()) System.out.println(c);
public static FontCharset 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 name
java.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static FontCharset valueOf(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |