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 aDocumentfor 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:BigIntegerPointfor 128-bit integersLatLonPointfor 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 DocumentDatasetSplitter. 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 FieldTypeFeatureField. FIELD_TYPEstatic FieldTypeBinaryDocValuesField. TYPEType for straight bytes DocValues.private static FieldTypeInetAddressPoint. TYPEprivate static FieldTypeInetAddressRange. TYPEstatic FieldTypeLatLonDocValuesField. TYPEType for a LatLonDocValuesFieldstatic FieldTypeLatLonPoint. TYPEType for an indexed LatLonPointstatic FieldTypeNumericDocValuesField. TYPEType for numeric DocValues.protected static FieldTypeShapeField. TYPEtessellated triangles are seven dimensions; the first four are the bounding box index dimensionsstatic FieldTypeSortedDocValuesField. TYPEType for sorted bytes DocValuesstatic FieldTypeSortedNumericDocValuesField. TYPEType for sorted numeric DocValues.static FieldTypeSortedSetDocValuesField. TYPEType for sorted bytes DocValuesstatic FieldTypeStoredField. TYPEType for a stored-only field.static FieldTypeXYDocValuesField. TYPEType for a XYDocValuesFieldstatic FieldTypeXYPointField. TYPEType for an indexed XYPointstatic FieldTypeStringField. TYPE_NOT_STOREDIndexed, not tokenized, omits norms, indexes DOCS_ONLY, not stored.static FieldTypeTextField. TYPE_NOT_STOREDIndexed, tokenized, not stored.static FieldTypeStringField. TYPE_STOREDIndexed, not tokenized, omits norms, indexes DOCS_ONLY, storedstatic FieldTypeTextField. TYPE_STOREDIndexed, tokenized, stored.Methods in org.apache.lucene.document that return FieldType Modifier and Type Method Description static FieldTypeKnnVectorField. createFieldType(int dimension, VectorSimilarityFunction similarityFunction)A convenience method for creating a vector field type.private static FieldTypeKnnVectorField. createType(float[] v, VectorSimilarityFunction similarityFunction)private static FieldTypeBinaryPoint. getType(byte[][] point)private static FieldTypeBinaryPoint. getType(int numDims, int bytesPerDim)private static FieldTypeDoublePoint. getType(int numDims)private static FieldTypeDoubleRange. getType(int dimensions)set the field typeprivate static FieldTypeFloatPoint. getType(int numDims)private static FieldTypeFloatRange. getType(int dimensions)set the field typeprivate static FieldTypeIntPoint. getType(int numDims)private static FieldTypeIntRange. getType(int dimensions)set the field typeprivate static FieldTypeLongPoint. getType(int numDims)private static FieldTypeLongRange. 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 FieldTypeMemoryIndex. 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 FieldTypeTermFilteredPresearcher. 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 FieldTypeBigIntegerPoint. getType(int numDims)private static FieldTypeHalfFloatPoint. getType(int numDims)(package private) static FieldTypeLatLonBoundingBox. 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 FieldTypeAnalyzingInfixSuggester. getTextFieldType()Subclass can override this method to change the field type of the text field e.g.protected FieldTypeBlendedInfixSuggester. 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 FieldTypeSuggestField. FIELD_TYPEDefault 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 FieldTypeGeo3DDocValuesField. TYPEType for a Geo3DDocValuesFieldstatic FieldTypeGeo3DPoint. TYPEIndexingFieldType.Constructors in org.apache.lucene.spatial3d with parameters of type FieldType Constructor Description Geo3DDocValuesField(java.lang.String name, FieldType type, PlanetModel planetModel)
-