@Deprecated public static enum Field.TermVector extends Enum<Field.TermVector>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Field.TermVector NO
public static final Field.TermVector YES
public static final Field.TermVector WITH_POSITIONS
YES
public static final Field.TermVector WITH_OFFSETS
YES
public static final Field.TermVector WITH_POSITIONS_OFFSETS
YES
,
WITH_POSITIONS
,
WITH_OFFSETS
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 nameNullPointerException
- if the argument is nullpublic static Field.TermVector toTermVector(boolean stored, boolean withOffsets, boolean withPositions)
public abstract boolean isStored()
public abstract boolean withPositions()
public abstract boolean withOffsets()
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.