| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Field.TermVector>
org.apache.lucene.document.Field.TermVector
@Deprecated public static enum Field.TermVector
Specifies whether and how a field should have term vectors.
| Enum Constant Summary | |
|---|---|
NO
Deprecated. Do not store term vectors.  | 
|
WITH_OFFSETS
Deprecated. Store the term vector + Token offset information  | 
|
WITH_POSITIONS
Deprecated. Store the term vector + token position information  | 
|
WITH_POSITIONS_OFFSETS
Deprecated. Store the term vector + Token position and offset information  | 
|
YES
Deprecated. Store the term vectors of each document.  | 
|
| Method Summary | |
|---|---|
abstract  boolean | 
isStored()
Deprecated.  | 
static Field.TermVector | 
toTermVector(boolean stored,
             boolean withOffsets,
             boolean withPositions)
Deprecated. Get the best representation of a TermVector given the flags.  | 
static Field.TermVector | 
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name.  | 
static Field.TermVector[] | 
values()
Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.  | 
abstract  boolean | 
withOffsets()
Deprecated.  | 
abstract  boolean | 
withPositions()
Deprecated.  | 
| Methods inherited from class java.lang.Enum | 
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final Field.TermVector NO
public static final Field.TermVector YES
public static final Field.TermVector WITH_POSITIONS
YESpublic static final Field.TermVector WITH_OFFSETS
YESpublic static final Field.TermVector WITH_POSITIONS_OFFSETS
YES, 
WITH_POSITIONS, 
WITH_OFFSETS| Method Detail | 
|---|
public static Field.TermVector[] values()
for (Field.TermVector c : Field.TermVector.values()) System.out.println(c);
public static Field.TermVector valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
public static Field.TermVector toTermVector(boolean stored,
                                            boolean withOffsets,
                                            boolean withPositions)
public abstract boolean isStored()
public abstract boolean withPositions()
public abstract boolean withOffsets()
  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||