public static enum TermsEnum.SeekStatus extends Enum<TermsEnum.SeekStatus>
TermsEnum.seekCeil(org.apache.lucene.util.BytesRef, boolean).
If status is FOUND, then the precise term was found.
If status is NOT_FOUND, then a different term was
found. If the status is END, the end of the iteration
was hit.| 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-2012 Apache Software Foundation. All Rights Reserved.