public enum DictionaryFileType extends java.lang.Enum<DictionaryFileType>
Enum Constant and Description |
---|
CNTLIST |
DATA |
EXCEPTION |
INDEX |
REVCNTLIST |
SENSEINDEX |
Modifier and Type | Method and Description |
---|---|
static java.util.List<DictionaryFileType> |
getAllDictionaryFileTypes() |
DictionaryElementType |
getElementType() |
java.lang.String |
getName() |
java.lang.String |
toString() |
static DictionaryFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DictionaryFileType INDEX
public static final DictionaryFileType DATA
public static final DictionaryFileType EXCEPTION
public static final DictionaryFileType SENSEINDEX
public static final DictionaryFileType REVCNTLIST
public static final DictionaryFileType CNTLIST
public static DictionaryFileType[] values()
for (DictionaryFileType c : DictionaryFileType.values()) System.out.println(c);
public static DictionaryFileType 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 namejava.lang.NullPointerException
- if the argument is nullpublic static java.util.List<DictionaryFileType> getAllDictionaryFileTypes()
public java.lang.String getName()
public DictionaryElementType getElementType()
public java.lang.String toString()
toString
in class java.lang.Enum<DictionaryFileType>