public enum LuceneOperation extends Enum<LuceneOperation>
Modifier and Type | Method and Description |
---|---|
static LuceneOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LuceneOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LuceneOperation insert
public static final LuceneOperation query
public static LuceneOperation[] values()
for (LuceneOperation c : LuceneOperation.values()) System.out.println(c);
public static LuceneOperation 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 nullApache Camel