Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.queryparser.flexible.standard.config |
Standard Lucene Query Configuration.
|
org.apache.lucene.search.join |
Support for index-time and query-time joins.
|
Modifier and Type | Method and Description |
---|---|
FieldType.LegacyNumericType |
FieldType.numericType()
Deprecated.
Please switch to
PointValues instead |
static FieldType.LegacyNumericType |
FieldType.LegacyNumericType.valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static FieldType.LegacyNumericType[] |
FieldType.LegacyNumericType.values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
FieldType.setNumericType(FieldType.LegacyNumericType type)
Deprecated.
Please switch to
PointValues instead |
Modifier and Type | Method and Description |
---|---|
FieldType.LegacyNumericType |
LegacyNumericConfig.getType()
Deprecated.
Returns the numeric type used to index the numeric values
|
Modifier and Type | Method and Description |
---|---|
void |
LegacyNumericConfig.setType(FieldType.LegacyNumericType type)
Deprecated.
Sets the numeric type used to index the numeric values
|
Constructor and Description |
---|
LegacyNumericConfig(int precisionStep,
NumberFormat format,
FieldType.LegacyNumericType type)
Deprecated.
Constructs a
LegacyNumericConfig object. |
Modifier and Type | Method and Description |
---|---|
static Query |
JoinUtil.createJoinQuery(String fromField,
boolean multipleValuesPerDocument,
String toField,
FieldType.LegacyNumericType numericType,
Query fromQuery,
IndexSearcher fromSearcher,
ScoreMode scoreMode)
Deprecated.
Because
FieldType.LegacyNumericType is deprecated, instead use JoinUtil.createJoinQuery(String, boolean, String, Class, Query, IndexSearcher, ScoreMode)
Method for query time joining for numeric fields. It supports multi- and single- values longs and ints.
All considerations from JoinUtil.createJoinQuery(String, boolean, String, Query, IndexSearcher, ScoreMode) are applicable here too,
though memory consumption might be higher.
|
Copyright © 2000–2017 The Apache Software Foundation. All rights reserved.