public static enum FuzzySet.ContainsResult extends Enum<FuzzySet.ContainsResult>
FuzzySet.contains(BytesRef)
:
can never return definitively YES (always MAYBE),
but can sometimes definitely return NO.Modifier and Type | Method and Description |
---|---|
static FuzzySet.ContainsResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FuzzySet.ContainsResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzySet.ContainsResult MAYBE
public static final FuzzySet.ContainsResult NO
public static FuzzySet.ContainsResult[] values()
for (FuzzySet.ContainsResult c : FuzzySet.ContainsResult.values()) System.out.println(c);
public static FuzzySet.ContainsResult 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 © 2000-2013 Apache Software Foundation. All Rights Reserved.