public class EnumField extends PrimitiveFieldType
FieldType.DefaultAnalyzer, FieldType.MultiValueSelector
Modifier and Type | Field and Description |
---|---|
protected static int |
DEFAULT_PRECISION_STEP |
protected static Integer |
DEFAULT_VALUE |
protected Map<Integer,String> |
enumIntToStringMap |
protected String |
enumName |
protected String |
enumsConfigFile |
protected Map<String,Integer> |
enumStringToIntMap |
protected static String |
PARAM_ENUM_NAME |
protected static String |
PARAM_ENUMS_CONFIG |
ANALYZER, args, AUTO_GENERATE_PHRASE_QUERIES, CHAR_FILTER, CHAR_FILTERS, CLASS_NAME, docValuesFormat, ENABLE_GRAPH_QUERIES, falseProperties, FILTER, FILTERS, INDEX, INDEX_ANALYZER, MULTI_TERM, MULTI_TERM_ANALYZER, POLY_FIELD_SEPARATOR, postingsFormat, properties, QUERY, QUERY_ANALYZER, similarity, SIMILARITY, similarityFactory, TOKENIZER, trueProperties, TYPE, TYPE_NAME, typeName
BINARY, DOC_VALUES, INDEXED, LARGE_FIELD, MULTIVALUED, OMIT_NORMS, OMIT_POSITIONS, OMIT_TF_POSITIONS, REQUIRED, SORT_MISSING_FIRST, SORT_MISSING_LAST, STORE_OFFSETS, STORE_TERMOFFSETS, STORE_TERMPAYLOADS, STORE_TERMPOSITIONS, STORE_TERMVECTORS, STORED, TOKENIZED, USE_DOCVALUES_AS_STORED
Constructor and Description |
---|
EnumField() |
Modifier and Type | Method and Description |
---|---|
IndexableField |
createField(SchemaField field,
Object value,
float boost)
Used for adding a document when a field needs to be created from a
type and a string.
|
List<IndexableField> |
createFields(SchemaField sf,
Object value,
float boost)
Given a
SchemaField , create one or more IndexableField instances |
NumberType |
getNumberType()
Return the numeric type of this field, or null if this field is not a
numeric field.
|
FieldType.LegacyNumericType |
getNumericType()
Deprecated.
|
Query |
getRangeQuery(QParser parser,
SchemaField field,
String min,
String max,
boolean minInclusive,
boolean maxInclusive)
Returns a Query instance for doing range searches on this field type.
|
SortField |
getSortField(SchemaField field,
boolean top)
Returns the SortField instance that should be used to sort fields
of this type.
|
UninvertingReader.Type |
getUninversionType(SchemaField sf)
If DocValues is not enabled for a field, but it's indexed, docvalues can be constructed
on the fly (uninverted, aka fieldcache) on the first request to sort, facet, etc.
|
ValueSource |
getValueSource(SchemaField field,
QParser qparser)
called to get the default value source (normally, from the
Lucene FieldCache.)
|
CharsRef |
indexedToReadable(BytesRef input,
CharsRefBuilder output)
Given an indexed term, append the human readable representation
|
String |
indexedToReadable(String indexedForm)
Given an indexed term, return the human readable representation
|
protected void |
init(IndexSchema schema,
Map<String,String> args)
subclasses should initialize themselves with the args provided
and remove valid arguments.
|
String |
intValueToStringValue(Integer intVal)
Converting the (internal) integer value (indicating the sort order) to string (displayed) value
|
boolean |
isTokenized()
Returns true if fields of this type should be tokenized
|
void |
readableToIndexed(CharSequence val,
BytesRefBuilder result)
Given the readable value, return the term value that will match it.
|
String |
readableToIndexed(String val)
Given the readable value, return the term value that will match it.
|
String |
storedToIndexed(IndexableField f)
Given the stored field, return the indexed form
|
Integer |
stringValueToIntValue(String stringVal)
Converting the string (displayed) value (internal) to integer value (indicating the sort order)
|
String |
toExternal(IndexableField f)
Convert the stored-field format to an external (string, human readable)
value
|
String |
toInternal(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).
|
EnumFieldValue |
toObject(IndexableField f)
Convert the stored-field format to an external object.
|
EnumFieldValue |
toObject(SchemaField sf,
BytesRef term) |
void |
write(TextResponseWriter writer,
String name,
IndexableField f)
calls back to TextResponseWriter to write the field value
|
checkSupportsDocValues
checkSchemaField, createField, getAnalyzerProperties, getClassArg, getDocValuesFormat, getFieldQuery, getIndexAnalyzer, getIndexOptions, getNamedPropertyValues, getNonFieldPropertyArgs, getPostingsFormat, getPrefixQuery, getQueryAnalyzer, getRewriteMethod, getSetQuery, getSimilarity, getSimilarityFactory, getSingleValueSource, getStringSort, getTypeName, hasProperty, isExplicitAnalyzer, isExplicitQueryAnalyzer, isMultiValued, isPointField, isPolyField, marshalBase64SortValue, marshalSortValue, marshalStringSortValue, multiValuedFieldCache, restrictProps, setArgs, setIndexAnalyzer, setIsExplicitAnalyzer, setIsExplicitQueryAnalyzer, setQueryAnalyzer, setSimilarity, storedToReadable, supportsAnalyzers, toNativeType, toString, unmarshalBase64SortValue, unmarshalSortValue, unmarshalStringSortValue, useDocValuesAsStored
protected static final String PARAM_ENUMS_CONFIG
protected static final String PARAM_ENUM_NAME
protected static final Integer DEFAULT_VALUE
protected static final int DEFAULT_PRECISION_STEP
protected String enumsConfigFile
protected String enumName
protected void init(IndexSchema schema, Map<String,String> args)
init
in class PrimitiveFieldType
public EnumFieldValue toObject(IndexableField f)
toObject
in class FieldType
FieldType.toInternal(java.lang.String)
public SortField getSortField(SchemaField field, boolean top)
getSortField
in class FieldType
SchemaField.checkSortability()
public UninvertingReader.Type getUninversionType(SchemaField sf)
FieldType
getUninversionType
in class FieldType
sf
- field instancenull
(to disallow uninversion for the field)public ValueSource getValueSource(SchemaField field, QParser qparser)
getValueSource
in class FieldType
public void write(TextResponseWriter writer, String name, IndexableField f) throws IOException
write
in class FieldType
IOException
public boolean isTokenized()
isTokenized
in class FieldType
@Deprecated public FieldType.LegacyNumericType getNumericType()
getNumericType
in class FieldType
public NumberType getNumberType()
getNumberType
in class FieldType
public Query getRangeQuery(QParser parser, SchemaField field, String min, String max, boolean minInclusive, boolean maxInclusive)
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
parser
- the QParser
calling the methodfield
- the schema fieldmin
- the lower boundary of the range, nulls are allowed.max
- 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 notpublic String readableToIndexed(String val)
readableToIndexed
in class FieldType
public void readableToIndexed(CharSequence val, BytesRefBuilder result)
result
parameter and write from offset 0readableToIndexed
in class FieldType
public String toInternal(String val)
toInternal
in class FieldType
FieldType.toExternal(org.apache.lucene.index.IndexableField)
public String toExternal(IndexableField f)
toExternal
in class FieldType
FieldType.toInternal(java.lang.String)
public String indexedToReadable(String indexedForm)
indexedToReadable
in class FieldType
public CharsRef indexedToReadable(BytesRef input, CharsRefBuilder output)
indexedToReadable
in class FieldType
public EnumFieldValue toObject(SchemaField sf, BytesRef term)
public String storedToIndexed(IndexableField f)
storedToIndexed
in class FieldType
public IndexableField createField(SchemaField field, Object value, float boost)
By default, the indexed value is the same as the stored value (taken from toInternal()). Having a different representation for external, internal, and indexed would present quite a few problems given the current Lucene architecture. An analyzer for adding docs would need to translate internal->indexed while an analyzer for querying would need to translate external->indexed.
The only other alternative to having internal==indexed would be to have internal==external. In this case, toInternal should convert to the indexed representation, toExternal() should do nothing, and createField() should *not* call toInternal, but use the external value and set tokenized=true to get Lucene to convert to the internal(indexed) form.
:TODO: clean up and clarify this explanation.createField
in class FieldType
FieldType.toInternal(java.lang.String)
public List<IndexableField> createFields(SchemaField sf, Object value, float boost)
SchemaField
, create one or more IndexableField
instancescreateFields
in class FieldType
sf
- the SchemaField
value
- The value to add to the fieldboost
- The boost to applyIndexableField
FieldType.createField(SchemaField, Object, float)
,
FieldType.isPolyField()
public String intValueToStringValue(Integer intVal)
intVal
- integer valueCopyright © 2000-2017 Apache Software Foundation. All Rights Reserved.