public static enum Query.TypoTolerance extends Enum<Query.TypoTolerance>
Modifier and Type | Method and Description |
---|---|
static Query.TypoTolerance |
fromString(String string) |
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 TRUE
public static final Query.TypoTolerance FALSE
public static final Query.TypoTolerance MIN
public static final Query.TypoTolerance STRICT
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 nullpublic static Query.TypoTolerance fromString(String string)