public enum DictionaryEntryField extends Enum<DictionaryEntryField>
IndexBuilder.addEntry
.Enum Constant and Description |
---|
OTHER
The index entry is in some other field of a dictionary entry.
|
READING
The index entry is in the reading field of a dictionary entry.
|
TRANSLATION
The index entry is in the translation field of a dictionary entry.
|
WORD
The index entry is in the word field of a dictionary entry.
|
Modifier and Type | Method and Description |
---|---|
static DictionaryEntryField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryEntryField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DictionaryEntryField WORD
public static final DictionaryEntryField READING
public static final DictionaryEntryField TRANSLATION
public static final DictionaryEntryField OTHER
public static DictionaryEntryField[] values()
for (DictionaryEntryField c : DictionaryEntryField.values()) System.out.println(c);
public static DictionaryEntryField valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2001-2013 the JGloss developers. All Rights Reserved.