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.queryparser.flexible.standard.nodes |
Standard Lucene Query Nodes.
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.search.join |
Support for index-time and query-time joins.
|
Modifier and Type | Field and Description |
---|---|
private FieldType.LegacyNumericType |
FieldType.numericType |
Modifier and Type | Method and Description |
---|---|
FieldType.LegacyNumericType |
FieldType.numericType()
Deprecated.
Please switch to
PointValues instead |
static FieldType.LegacyNumericType |
FieldType.LegacyNumericType.valueOf(java.lang.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 | Field and Description |
---|---|
private FieldType.LegacyNumericType |
LegacyNumericConfig.type
Deprecated.
|
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,
java.text.NumberFormat format,
FieldType.LegacyNumericType type)
Deprecated.
Constructs a
LegacyNumericConfig object. |
Modifier and Type | Method and Description |
---|---|
private static FieldType.LegacyNumericType |
LegacyNumericRangeQueryNode.getNumericDataType(java.lang.Number number)
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
(package private) FieldType.LegacyNumericType |
LegacyNumericRangeQuery.dataType
Deprecated.
|
Constructor and Description |
---|
LegacyNumericRangeQuery(java.lang.String field,
int precisionStep,
FieldType.LegacyNumericType dataType,
T min,
T max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
(package private) static java.util.function.LongConsumer |
DocValuesTermsCollector.coder(BytesRefBuilder bytes,
FieldType.LegacyNumericType type,
java.lang.String fieldName) |
static Query |
JoinUtil.createJoinQuery(java.lang.String fromField,
boolean multipleValuesPerDocument,
java.lang.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.
|
(package private) static DocValuesTermsCollector.Function<BinaryDocValues> |
DocValuesTermsCollector.numericAsBinaryDocValues(java.lang.String field,
FieldType.LegacyNumericType numTyp) |
(package private) static DocValuesTermsCollector.Function<SortedSetDocValues> |
DocValuesTermsCollector.sortedNumericAsSortedSetDocValues(java.lang.String field,
FieldType.LegacyNumericType numTyp)
this adapter is quite weird.
|