Package com.isode.x400.highlevel
Enum BodypartGeneralText.Charset
- java.lang.Object
-
- java.lang.Enum<BodypartGeneralText.Charset>
-
- com.isode.x400.highlevel.BodypartGeneralText.Charset
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BodypartGeneralText.Charset>
- Enclosing class:
- BodypartGeneralText
public static enum BodypartGeneralText.Charset extends java.lang.Enum<BodypartGeneralText.Charset>
Available charsets to use for General Text bodyparts
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARABIC
CYRILLIC
EAST_EUROPEAN
GREEK
HEBREW
ISO_646
OTHER_LATIN
WEST_EUROPEAN
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
stringVal
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static BodypartGeneralText.Charset
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BodypartGeneralText.Charset[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ISO_646
public static final BodypartGeneralText.Charset ISO_646
-
WEST_EUROPEAN
public static final BodypartGeneralText.Charset WEST_EUROPEAN
-
EAST_EUROPEAN
public static final BodypartGeneralText.Charset EAST_EUROPEAN
-
CYRILLIC
public static final BodypartGeneralText.Charset CYRILLIC
-
ARABIC
public static final BodypartGeneralText.Charset ARABIC
-
GREEK
public static final BodypartGeneralText.Charset GREEK
-
HEBREW
public static final BodypartGeneralText.Charset HEBREW
-
OTHER_LATIN
public static final BodypartGeneralText.Charset OTHER_LATIN
-
-
Method Detail
-
values
public static BodypartGeneralText.Charset[] 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 (BodypartGeneralText.Charset c : BodypartGeneralText.Charset.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BodypartGeneralText.Charset 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<BodypartGeneralText.Charset>
-
-