public static enum StoredFieldVisitor.Status extends Enum<StoredFieldVisitor.Status>
StoredFieldVisitor.needsField(org.apache.lucene.index.FieldInfo)
.Enum Constant and Description |
---|
NO
NO: don't visit this field, but continue processing fields for this document.
|
STOP
STOP: don't visit this field and stop processing any other fields for this document.
|
YES
YES: the field should be visited.
|
Modifier and Type | Method and Description |
---|---|
static StoredFieldVisitor.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredFieldVisitor.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredFieldVisitor.Status YES
public static final StoredFieldVisitor.Status NO
public static final StoredFieldVisitor.Status STOP
public static StoredFieldVisitor.Status[] values()
for (StoredFieldVisitor.Status c : StoredFieldVisitor.Status.values()) System.out.println(c);
public static StoredFieldVisitor.Status 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.