public static enum TermsEnum.SeekStatus extends Enum<TermsEnum.SeekStatus>
TermsEnum.seekCeil(org.apache.lucene.util.BytesRef).| Enum Constant and Description |
|---|
END
The term was not found, and the end of iteration was hit.
|
FOUND
The precise term was found.
|
NOT_FOUND
A different term was found after the requested term
|
| Modifier and Type | Method and Description |
|---|---|
static TermsEnum.SeekStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TermsEnum.SeekStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TermsEnum.SeekStatus END
public static final TermsEnum.SeekStatus FOUND
public static final TermsEnum.SeekStatus NOT_FOUND
public static TermsEnum.SeekStatus[] values()
for (TermsEnum.SeekStatus c : TermsEnum.SeekStatus.values()) System.out.println(c);
public static TermsEnum.SeekStatus 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-2018 Apache Software Foundation. All Rights Reserved.