Package com.healthmarketscience.jackcess
Enum PropertyMap.IMEMode
- java.lang.Object
-
- java.lang.Enum<PropertyMap.IMEMode>
-
- com.healthmarketscience.jackcess.PropertyMap.IMEMode
-
- All Implemented Interfaces:
PropertyMap.EnumValue,Serializable,Comparable<PropertyMap.IMEMode>
- Enclosing interface:
- PropertyMap
public static enum PropertyMap.IMEMode extends Enum<PropertyMap.IMEMode> implements PropertyMap.EnumValue
Enum value constants for the IMEMode property
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BytegetValue()StringtoString()static PropertyMap.IMEModevalueOf(String name)Returns the enum constant of this type with the specified name.static PropertyMap.IMEMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOCONTROL
public static final PropertyMap.IMEMode NOCONTROL
-
ON
public static final PropertyMap.IMEMode ON
-
OFF
public static final PropertyMap.IMEMode OFF
-
DISABLE
public static final PropertyMap.IMEMode DISABLE
-
HIRAGANA
public static final PropertyMap.IMEMode HIRAGANA
-
KATAKANA
public static final PropertyMap.IMEMode KATAKANA
-
KATAKANAHALF
public static final PropertyMap.IMEMode KATAKANAHALF
-
ALPHAFULL
public static final PropertyMap.IMEMode ALPHAFULL
-
ALPHA
public static final PropertyMap.IMEMode ALPHA
-
HANGULFULL
public static final PropertyMap.IMEMode HANGULFULL
-
HANGUL
public static final PropertyMap.IMEMode HANGUL
-
-
Method Detail
-
values
public static PropertyMap.IMEMode[] 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 (PropertyMap.IMEMode c : PropertyMap.IMEMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyMap.IMEMode valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public Byte getValue()
- Specified by:
getValuein interfacePropertyMap.EnumValue- Returns:
- the property value which should be stored in the db
-
toString
public String toString()
- Overrides:
toStringin classEnum<PropertyMap.IMEMode>
-
-