Java org.apache.solr.schema FieldType fields, constructors, methods, implement or subclass

Example usage for Java org.apache.solr.schema FieldType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.solr.schema FieldType.

The text is from its open source code.

Subclass

org.apache.solr.schema.FieldType has subclasses.
Click this link to see all its subclasses.

Method

AnalyzergetIndexAnalyzer()
Returns the Analyzer to be used when indexing fields of this type.
AnalyzergetQueryAnalyzer()
Returns the Analyzer to be used when searching fields of this type.
QuerygetRangeQuery(QParser parser, SchemaField field, String part1, String part2, boolean minInclusive, boolean maxInclusive)
Returns a Query instance for doing range searches on this field type.
MultiTermQuery.RewriteMethodgetRewriteMethod(QParser parser, SchemaField field)
Expert: Returns the rewrite method for multiterm queries such as wildcards.
StringgetTypeName()
The Name of this FieldType as specified in the schema file
ValueSourcegetValueSource(SchemaField field, QParser parser)
called to get the default value source (normally, from the Lucene FieldCache.)
CharsRefindexedToReadable(BytesRef input, CharsRefBuilder output)
Given an indexed term, append the human readable representation
StringindexedToReadable(String indexedForm)
Given an indexed term, return the human readable representation
StringreadableToIndexed(String val)
Given the readable value, return the term value that will match it.
voidreadableToIndexed(CharSequence val, BytesRefBuilder result)
Given the readable value, return the term value that will match it.
StringtoInternal(String val)
Convert an external value (from XML update command or from query string) into the internal format for both storing and indexing (which can be modified by any analyzers).
ObjecttoObject(IndexableField f)
Convert the stored-field format to an external object.