public static enum Query.TypoTolerance extends Enum<Query.TypoTolerance>
| Enum Constant and Description |
|---|
TYPO_FALSE |
TYPO_MIN |
TYPO_NOTSET |
TYPO_STRICT |
TYPO_TRUE |
| Modifier and Type | Method and Description |
|---|---|
static Query.TypoTolerance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Query.TypoTolerance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Query.TypoTolerance TYPO_TRUE
public static final Query.TypoTolerance TYPO_FALSE
public static final Query.TypoTolerance TYPO_MIN
public static final Query.TypoTolerance TYPO_STRICT
public static final Query.TypoTolerance TYPO_NOTSET
public static Query.TypoTolerance[] values()
for (Query.TypoTolerance c : Query.TypoTolerance.values()) System.out.println(c);
public static Query.TypoTolerance 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 © 2017. All rights reserved.