Uses of Class
org.apache.lucene.document.FieldType
-
Packages that use FieldType Package Description org.apache.lucene.classification.utils Utilities for evaluation, data preparation, etc.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.monitor Monitoring frameworkorg.apache.lucene.sandbox.document This package contains several point types:BigIntegerPoint
for 128-bit integersLatLonPoint
for latitude/longitude geospatial pointsorg.apache.lucene.search.suggest.analyzing Analyzer based autosuggest.org.apache.lucene.search.suggest.document Support for document suggestionorg.apache.lucene.spatial3d Lucene field & query support for the spatial geometry implemented inorg.apache.lucene.spatial3d.geom
. -
-
Uses of FieldType in org.apache.lucene.classification.utils
Methods in org.apache.lucene.classification.utils with parameters of type FieldType Modifier and Type Method Description private Document
DatasetSplitter. createNewDoc(IndexReader originalIndex, FieldType ft, ScoreDoc scoreDoc, java.lang.String[] fieldNames)
-
Uses of FieldType in org.apache.lucene.document
Fields in org.apache.lucene.document declared as FieldType Modifier and Type Field Description private static FieldType
FeatureField. FIELD_TYPE
static FieldType
BinaryDocValuesField. TYPE
Type for straight bytes DocValues.private static FieldType
InetAddressPoint. TYPE
private static FieldType
InetAddressRange. TYPE
static FieldType
LatLonDocValuesField. TYPE
Type for a LatLonDocValuesFieldstatic FieldType
LatLonPoint. TYPE
Type for an indexed LatLonPointstatic FieldType
NumericDocValuesField. TYPE
Type for numeric DocValues.protected static FieldType
ShapeField. TYPE
tessellated triangles are seven dimensions; the first four are the bounding box index dimensionsstatic FieldType
SortedDocValuesField. TYPE
Type for sorted bytes DocValuesstatic FieldType
SortedNumericDocValuesField. TYPE
Type for sorted numeric DocValues.static FieldType
SortedSetDocValuesField. TYPE
Type for sorted bytes DocValuesstatic FieldType
StoredField. TYPE
Type for a stored-only field.static FieldType
XYDocValuesField. TYPE
Type for a XYDocValuesFieldstatic FieldType
XYPointField. TYPE
Type for an indexed XYPointstatic FieldType
StringField. TYPE_NOT_STORED
Indexed, not tokenized, omits norms, indexes DOCS_ONLY, not stored.static FieldType
TextField. TYPE_NOT_STORED
Indexed, tokenized, not stored.static FieldType
StringField. TYPE_STORED
Indexed, not tokenized, omits norms, indexes DOCS_ONLY, storedstatic FieldType
TextField. TYPE_STORED
Indexed, tokenized, stored.Methods in org.apache.lucene.document that return FieldType Modifier and Type Method Description static FieldType
KnnVectorField. createFieldType(int dimension, VectorSimilarityFunction similarityFunction)
A convenience method for creating a vector field type.private static FieldType
KnnVectorField. createType(float[] v, VectorSimilarityFunction similarityFunction)
private static FieldType
BinaryPoint. getType(byte[][] point)
private static FieldType
BinaryPoint. getType(int numDims, int bytesPerDim)
private static FieldType
DoublePoint. getType(int numDims)
private static FieldType
DoubleRange. getType(int dimensions)
set the field typeprivate static FieldType
FloatPoint. getType(int numDims)
private static FieldType
FloatRange. getType(int dimensions)
set the field typeprivate static FieldType
IntPoint. getType(int numDims)
private static FieldType
IntRange. getType(int dimensions)
set the field typeprivate static FieldType
LongPoint. getType(int numDims)
private static FieldType
LongRange. getType(int dimensions)
set the field typeConstructors in org.apache.lucene.document with parameters of type FieldType Constructor Description KnnVectorField(java.lang.String name, float[] vector, FieldType fieldType)
Creates a numeric vector field.StoredField(java.lang.String name, java.lang.CharSequence value, FieldType type)
Expert: allows you to customize theFieldType
.StoredField(java.lang.String name, java.lang.String value, FieldType type)
Expert: allows you to customize theFieldType
.StoredField(java.lang.String name, FieldType type)
Expert: allows you to customize theFieldType
.StoredField(java.lang.String name, BytesRef bytes, FieldType type)
Expert: allows you to customize theFieldType
. -
Uses of FieldType in org.apache.lucene.index.memory
Fields in org.apache.lucene.index.memory declared as FieldType Modifier and Type Field Description private FieldType
MemoryIndex. defaultFieldType
-
Uses of FieldType in org.apache.lucene.monitor
Fields in org.apache.lucene.monitor declared as FieldType Modifier and Type Field Description (package private) static FieldType
TermFilteredPresearcher. QUERYFIELDTYPE
-
Uses of FieldType in org.apache.lucene.sandbox.document
Methods in org.apache.lucene.sandbox.document that return FieldType Modifier and Type Method Description private static FieldType
BigIntegerPoint. getType(int numDims)
private static FieldType
HalfFloatPoint. getType(int numDims)
(package private) static FieldType
LatLonBoundingBox. getType(int geoDimensions)
set the field type -
Uses of FieldType in org.apache.lucene.search.suggest.analyzing
Methods in org.apache.lucene.search.suggest.analyzing that return FieldType Modifier and Type Method Description protected FieldType
AnalyzingInfixSuggester. getTextFieldType()
Subclass can override this method to change the field type of the text field e.g.protected FieldType
BlendedInfixSuggester. getTextFieldType()
-
Uses of FieldType in org.apache.lucene.search.suggest.document
Fields in org.apache.lucene.search.suggest.document declared as FieldType Modifier and Type Field Description static FieldType
SuggestField. FIELD_TYPE
Default field type for suggest field -
Uses of FieldType in org.apache.lucene.spatial3d
Fields in org.apache.lucene.spatial3d declared as FieldType Modifier and Type Field Description static FieldType
Geo3DDocValuesField. TYPE
Type for a Geo3DDocValuesFieldstatic FieldType
Geo3DPoint. TYPE
IndexingFieldType
.Constructors in org.apache.lucene.spatial3d with parameters of type FieldType Constructor Description Geo3DDocValuesField(java.lang.String name, FieldType type, PlanetModel planetModel)
-