org.apache.poi.hwmf.record
Enum HwmfFont.WmfCharset

java.lang.Object
  extended by java.lang.Enum<HwmfFont.WmfCharset>
      extended by org.apache.poi.hwmf.record.HwmfFont.WmfCharset
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HwmfFont.WmfCharset>
Enclosing class:
HwmfFont

public static enum HwmfFont.WmfCharset
extends java.lang.Enum<HwmfFont.WmfCharset>


Enum Constant Summary
ANSI_CHARSET
          Specifies the English character set.
ARABIC_CHARSET
          Specifies the Arabic character set.
BALTIC_CHARSET
          Specifies the Baltic (Northeastern European) character set.
CHINESEBIG5_CHARSET
          Specifies the "traditional" Chinese character set, used mostly in Taiwan and in the Hong Kong and Macao Special Administrative Regions.
DEFAULT_CHARSET
          Specifies a character set based on the current system locale; for example, when the system locale is United States English, the default character set is ANSI_CHARSET.
EASTEUROPE_CHARSET
          Specifies a Eastern European character set.
GB2312_CHARSET
          Specifies the "simplified" Chinese character set for People's Republic of China.
GREEK_CHARSET
          Specifies the Greek character set.
HANGUL_CHARSET
          Also spelled "Hangeul".
HEBREW_CHARSET
          Specifies the Hebrew character set.
JOHAB_CHARSET
          Also spelled "Johap".
MAC_CHARSET
          Specifies the Apple Macintosh character set.
OEM_CHARSET
          Specifies a mapping to one of the OEM code pages, according to the current system locale setting.
RUSSIAN_CHARSET
          Specifies the Russian Cyrillic character set.
SHIFTJIS_CHARSET
          Specifies the Japanese character set.
SYMBOL_CHARSET
          Specifies a character set of symbols.
THAI_CHARSET
          Specifies the Thai character set.
TURKISH_CHARSET
          Specifies the Turkish character set.
VIETNAMESE_CHARSET
          Specifies the Vietnamese character set.
 
Method Summary
static HwmfFont.WmfCharset valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HwmfFont.WmfCharset[] values()
          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

ANSI_CHARSET

public static final HwmfFont.WmfCharset ANSI_CHARSET
Specifies the English character set.


DEFAULT_CHARSET

public static final HwmfFont.WmfCharset DEFAULT_CHARSET
Specifies a character set based on the current system locale; for example, when the system locale is United States English, the default character set is ANSI_CHARSET.


SYMBOL_CHARSET

public static final HwmfFont.WmfCharset SYMBOL_CHARSET
Specifies a character set of symbols.


MAC_CHARSET

public static final HwmfFont.WmfCharset MAC_CHARSET
Specifies the Apple Macintosh character set.


SHIFTJIS_CHARSET

public static final HwmfFont.WmfCharset SHIFTJIS_CHARSET
Specifies the Japanese character set.


HANGUL_CHARSET

public static final HwmfFont.WmfCharset HANGUL_CHARSET
Also spelled "Hangeul". Specifies the Hangul Korean character set.


JOHAB_CHARSET

public static final HwmfFont.WmfCharset JOHAB_CHARSET
Also spelled "Johap". Specifies the Johab Korean character set.


GB2312_CHARSET

public static final HwmfFont.WmfCharset GB2312_CHARSET
Specifies the "simplified" Chinese character set for People's Republic of China.


CHINESEBIG5_CHARSET

public static final HwmfFont.WmfCharset CHINESEBIG5_CHARSET
Specifies the "traditional" Chinese character set, used mostly in Taiwan and in the Hong Kong and Macao Special Administrative Regions.


GREEK_CHARSET

public static final HwmfFont.WmfCharset GREEK_CHARSET
Specifies the Greek character set.


TURKISH_CHARSET

public static final HwmfFont.WmfCharset TURKISH_CHARSET
Specifies the Turkish character set.


VIETNAMESE_CHARSET

public static final HwmfFont.WmfCharset VIETNAMESE_CHARSET
Specifies the Vietnamese character set.


HEBREW_CHARSET

public static final HwmfFont.WmfCharset HEBREW_CHARSET
Specifies the Hebrew character set.


ARABIC_CHARSET

public static final HwmfFont.WmfCharset ARABIC_CHARSET
Specifies the Arabic character set.


BALTIC_CHARSET

public static final HwmfFont.WmfCharset BALTIC_CHARSET
Specifies the Baltic (Northeastern European) character set.


RUSSIAN_CHARSET

public static final HwmfFont.WmfCharset RUSSIAN_CHARSET
Specifies the Russian Cyrillic character set.


THAI_CHARSET

public static final HwmfFont.WmfCharset THAI_CHARSET
Specifies the Thai character set.


EASTEUROPE_CHARSET

public static final HwmfFont.WmfCharset EASTEUROPE_CHARSET
Specifies a Eastern European character set.


OEM_CHARSET

public static final HwmfFont.WmfCharset OEM_CHARSET
Specifies a mapping to one of the OEM code pages, according to the current system locale setting.

Method Detail

values

public static HwmfFont.WmfCharset[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (HwmfFont.WmfCharset c : HwmfFont.WmfCharset.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static HwmfFont.WmfCharset valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright 2016 The Apache Software Foundation or its licensors, as applicable.