public enum LuceneOps extends Enum<LuceneOps> implements Operator
Enum Constant and Description |
---|
LUCENE_QUERY |
PHRASE |
TERM |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getType()
Get the result type of the operator
|
static LuceneOps |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LuceneOps[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LuceneOps LUCENE_QUERY
public static final LuceneOps PHRASE
public static final LuceneOps TERM
public static LuceneOps[] values()
for (LuceneOps c : LuceneOps.values()) System.out.println(c);
public static LuceneOps 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 © 2007–2016 Querydsl. All rights reserved.