public class TextField extends FieldType
TextField
is the basic type for configurable text analysis.
Analyzers for field types using this implementation should be defined in the schema.FieldType.DefaultAnalyzer
Modifier and Type | Field and Description |
---|---|
protected boolean |
autoGeneratePhraseQueries |
protected Analyzer |
multiTermAnalyzer
Analyzer set by schema for text types to use when searching fields
of this type, subclasses can set analyzer themselves or override
getAnalyzer()
This analyzer is used to process wildcard, prefix, regex and other multiterm queries.
|
analyzer, args, falseProperties, log, POLY_FIELD_SEPARATOR, postingsFormat, queryAnalyzer, similarity, trueProperties, typeName
BINARY, INDEXED, MULTIVALUED, OMIT_NORMS, OMIT_POSITIONS, OMIT_TF_POSITIONS, REQUIRED, SORT_MISSING_FIRST, SORT_MISSING_LAST, STORE_OFFSETS, STORE_TERMOFFSETS, STORE_TERMPOSITIONS, STORE_TERMVECTORS, STORED, TOKENIZED
Constructor and Description |
---|
TextField() |
Modifier and Type | Method and Description |
---|---|
static BytesRef |
analyzeMultiTerm(String field,
String part,
Analyzer analyzerIn) |
boolean |
getAutoGeneratePhraseQueries() |
Query |
getFieldQuery(QParser parser,
SchemaField field,
String externalVal)
Returns a Query instance for doing searches against a field.
|
Analyzer |
getMultiTermAnalyzer()
Returns the Analyzer to be used when searching fields of this type when mult-term queries are specified.
|
Query |
getRangeQuery(QParser parser,
SchemaField field,
String part1,
String part2,
boolean minInclusive,
boolean maxInclusive)
Returns a Query instance for doing range searches on this field type.
|
SortField |
getSortField(SchemaField field,
boolean reverse)
Returns the SortField instance that should be used to sort fields
of this type.
|
protected void |
init(IndexSchema schema,
Map<String,String> args)
subclasses should initialize themselves with the args provided
and remove valid arguments.
|
void |
setAnalyzer(Analyzer analyzer)
Sets the Analyzer to be used when indexing fields of this type.
|
void |
setMultiTermAnalyzer(Analyzer analyzer) |
void |
setQueryAnalyzer(Analyzer analyzer)
Sets the Analyzer to be used when querying fields of this type.
|
Object |
toObject(SchemaField sf,
BytesRef term) |
void |
write(TextResponseWriter writer,
String name,
IndexableField f)
calls back to TextResponseWriter to write the field value
|
checkSchemaField, createField, createField, createFields, getAnalyzer, getArg, getIndexOptions, getPostingsFormat, getQueryAnalyzer, getSimilarity, getStringSort, getTypeName, getValueSource, hasProperty, indexedToReadable, indexedToReadable, isMultiValued, isPolyField, isTokenized, multiValuedFieldCache, readableToIndexed, readableToIndexed, restrictProps, setSimilarity, storedToIndexed, storedToReadable, toExternal, toInternal, toObject, toString
protected boolean autoGeneratePhraseQueries
protected Analyzer multiTermAnalyzer
protected void init(IndexSchema schema, Map<String,String> args)
FieldType
public Analyzer getMultiTermAnalyzer()
This method may be called many times, at any time.
FieldType.getAnalyzer()
public void setMultiTermAnalyzer(Analyzer analyzer)
public boolean getAutoGeneratePhraseQueries()
public SortField getSortField(SchemaField field, boolean reverse)
FieldType
getSortField
in class FieldType
SchemaField.checkSortability()
public void write(TextResponseWriter writer, String name, IndexableField f) throws IOException
FieldType
write
in class FieldType
IOException
public Query getFieldQuery(QParser parser, SchemaField field, String externalVal)
FieldType
getFieldQuery
in class FieldType
parser
- The QParser
calling the methodfield
- The SchemaField
of the field to searchexternalVal
- The String representation of the value to searchQuery
instance. This implementation returns a TermQuery
but overriding queries may notpublic Object toObject(SchemaField sf, BytesRef term)
public void setAnalyzer(Analyzer analyzer)
FieldType
The default implementation throws a SolrException. Subclasses that override this method need to ensure the behavior of the analyzer is consistent with the implementation of toInternal.
public void setQueryAnalyzer(Analyzer analyzer)
FieldType
The default implementation throws a SolrException. Subclasses that override this method need to ensure the behavior of the analyzer is consistent with the implementation of toInternal.
public Query getRangeQuery(QParser parser, SchemaField field, String part1, String part2, boolean minInclusive, boolean maxInclusive)
FieldType
SolrQueryParser
currently passes part1 and part2 as null if they are '*' respectively. minInclusive and maxInclusive are both true
currently by SolrQueryParser but that may change in the future. Also, other QueryParser implementations may have
different semantics.
Sub-classes should override this method to provide their own range query implementation. They should strive to
handle nulls in part1 and/or part2 as well as unequal minInclusive and maxInclusive parameters gracefully.getRangeQuery
in class FieldType
field
- the schema fieldpart1
- the lower boundary of the range, nulls are allowed.part2
- the upper boundary of the range, nulls are allowedminInclusive
- whether the minimum of the range is inclusive or notmaxInclusive
- whether the maximum of the range is inclusive or notCopyright © 2000-2013 Apache Software Foundation. All Rights Reserved.