public static enum UninvertingReader.Type extends Enum<UninvertingReader.Type>
| Enum Constant and Description |
|---|
BINARY
Single-valued Binary, (e.g.
|
DOUBLE_POINT
Single-valued Integer, (e.g.
|
FLOAT_POINT
Single-valued Integer, (e.g.
|
INTEGER_POINT
Single-valued Integer, (e.g.
|
LEGACY_DOUBLE
Deprecated.
Index with points and use
DOUBLE_POINT instead. |
LEGACY_FLOAT
Deprecated.
Index with points and use
FLOAT_POINT instead. |
LEGACY_INTEGER
Deprecated.
Index with points and use
INTEGER_POINT instead. |
LEGACY_LONG
Deprecated.
Index with points and use
LONG_POINT instead. |
LONG_POINT
Single-valued Integer, (e.g.
|
SORTED
Single-valued Binary, (e.g.
|
SORTED_SET_BINARY
Multi-valued Binary, (e.g.
|
SORTED_SET_DOUBLE
Multi-valued Double, (e.g.
|
SORTED_SET_FLOAT
Multi-valued Float, (e.g.
|
SORTED_SET_INTEGER
Multi-valued Integer, (e.g.
|
SORTED_SET_LONG
Multi-valued Long, (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static UninvertingReader.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UninvertingReader.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UninvertingReader.Type INTEGER_POINT
IntPoint)
Fields with this type act as if they were indexed with
NumericDocValuesField.
public static final UninvertingReader.Type LONG_POINT
LongPoint)
Fields with this type act as if they were indexed with
NumericDocValuesField.
public static final UninvertingReader.Type FLOAT_POINT
FloatPoint)
Fields with this type act as if they were indexed with
NumericDocValuesField.
public static final UninvertingReader.Type DOUBLE_POINT
DoublePoint)
Fields with this type act as if they were indexed with
NumericDocValuesField.
@Deprecated public static final UninvertingReader.Type LEGACY_INTEGER
INTEGER_POINT instead.LegacyIntField)
Fields with this type act as if they were indexed with
NumericDocValuesField.
@Deprecated public static final UninvertingReader.Type LEGACY_LONG
LONG_POINT instead.LegacyLongField)
Fields with this type act as if they were indexed with
NumericDocValuesField.
@Deprecated public static final UninvertingReader.Type LEGACY_FLOAT
FLOAT_POINT instead.LegacyFloatField)
Fields with this type act as if they were indexed with
NumericDocValuesField.
@Deprecated public static final UninvertingReader.Type LEGACY_DOUBLE
DOUBLE_POINT instead.LegacyDoubleField)
Fields with this type act as if they were indexed with
NumericDocValuesField.
public static final UninvertingReader.Type BINARY
StringField)
Fields with this type act as if they were indexed with
BinaryDocValuesField.
public static final UninvertingReader.Type SORTED
StringField)
Fields with this type act as if they were indexed with
SortedDocValuesField.
public static final UninvertingReader.Type SORTED_SET_BINARY
StringField)
Fields with this type act as if they were indexed with
SortedSetDocValuesField.
public static final UninvertingReader.Type SORTED_SET_INTEGER
LegacyIntField)
Fields with this type act as if they were indexed with
SortedSetDocValuesField.
public static final UninvertingReader.Type SORTED_SET_FLOAT
LegacyFloatField)
Fields with this type act as if they were indexed with
SortedSetDocValuesField.
public static final UninvertingReader.Type SORTED_SET_LONG
LegacyLongField)
Fields with this type act as if they were indexed with
SortedSetDocValuesField.
public static final UninvertingReader.Type SORTED_SET_DOUBLE
LegacyDoubleField)
Fields with this type act as if they were indexed with
SortedSetDocValuesField.
public static UninvertingReader.Type[] values()
for (UninvertingReader.Type c : UninvertingReader.Type.values()) System.out.println(c);
public static UninvertingReader.Type 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-2016 Apache Software Foundation. All Rights Reserved.