Package org.apache.poi.ss.usermodel
Enum Class FontCharset
- All Implemented Interfaces:
Serializable
,Comparable<FontCharset>
,Constable
Deprecated.
enum will be replaced by common version org.apache.poi.common.usermodel.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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Deprecated.Returns value of this charsetstatic FontCharset
valueOf
(int value) Deprecated.Returns the enum constant of this class with the specified name.static FontCharset
Deprecated.Returns the enum constant of this class with the specified name.static FontCharset[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANSI
Deprecated. -
DEFAULT
Deprecated. -
SYMBOL
Deprecated. -
MAC
Deprecated. -
SHIFTJIS
Deprecated. -
HANGEUL
Deprecated. -
JOHAB
Deprecated. -
GB2312
Deprecated. -
CHINESEBIG5
Deprecated. -
GREEK
Deprecated. -
TURKISH
Deprecated. -
VIETNAMESE
Deprecated. -
HEBREW
Deprecated. -
ARABIC
Deprecated. -
BALTIC
Deprecated. -
RUSSIAN
Deprecated. -
THAI
Deprecated. -
EASTEUROPE
Deprecated. -
OEM
Deprecated.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()Deprecated.Returns value of this charset- Returns:
- value of this charset
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-