public class TrieDateField extends DateField
FieldType.DefaultAnalyzerCANONICAL_LOCALE, CANONICAL_TZ, MATH_LOCALE, MATH_TZ, NOW, UTC, Zanalyzer, args, falseProperties, log, POLY_FIELD_SEPARATOR, postingsFormat, queryAnalyzer, similarity, trueProperties, typeNameBINARY, 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 | 
|---|
| TrieDateField() | 
| 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. | 
| int | getPrecisionStep() | 
| Query | getRangeQuery(QParser parser,
             SchemaField sf,
             Date min,
             Date max,
             boolean minInclusive,
             boolean maxInclusive)DateField specific range query | 
| 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. | 
| ValueSource | getValueSource(SchemaField field,
              QParser parser)called to get the default value source (normally, from the
  Lucene FieldCache.) | 
| CharsRef | indexedToReadable(BytesRef input,
                 CharsRef charsRef)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. | 
| boolean | isTokenized()Returns true if fields of this type should be tokenized | 
| boolean | multiValuedFieldCache()Returns true if a single field value of this type has multiple logical values
  for the purposes of faceting, sorting, etc. | 
| 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 | 
| String | storedToReadable(IndexableField f)Given the stored field, return the human readable representation | 
| 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). | 
| Date | toObject(IndexableField f)Convert the stored-field format to an external object. | 
| Object | toObject(SchemaField sf,
        BytesRef term) | 
| void | write(TextResponseWriter writer,
     String name,
     IndexableField f)calls back to TextResponseWriter to write the field value | 
formatDate, formatExternal, getThreadLocalDateFormat, parseDate, parseDateLenient, parseMath, parseMathLenient, toExternal, toInternal, toObjectcheckSchemaField, createField, createFields, getAnalyzer, getArg, getFieldQuery, getIndexOptions, getPostingsFormat, getQueryAnalyzer, getSimilarity, getStringSort, getTypeName, hasProperty, isMultiValued, isPolyField, readableToIndexed, restrictProps, setAnalyzer, setQueryAnalyzer, setSimilarity, toStringprotected void init(IndexSchema schema, Map<String,String> args)
FieldTypeinit in class PrimitiveFieldTypepublic Date toObject(IndexableField f)
FieldTypetoObject in class DateFieldFieldType.toInternal(java.lang.String)public Object toObject(SchemaField sf, BytesRef term)
public SortField getSortField(SchemaField field, boolean top)
FieldTypegetSortField in class DateFieldSchemaField.checkSortability()public ValueSource getValueSource(SchemaField field, QParser parser)
FieldTypegetValueSource in class DateFieldpublic int getPrecisionStep()
public void write(TextResponseWriter writer, String name, IndexableField f) throws IOException
FieldTypewrite in class DateFieldIOExceptionpublic boolean isTokenized()
FieldTypeisTokenized in class FieldTypepublic boolean multiValuedFieldCache()
FieldTypemultiValuedFieldCache in class FieldTypepublic String storedToReadable(IndexableField f)
FieldTypestoredToReadable in class FieldTypepublic String readableToIndexed(String val)
FieldTypereadableToIndexed in class FieldTypepublic String toInternal(String val)
FieldTypetoInternal in class DateFieldFieldType.toExternal(org.apache.lucene.index.IndexableField)public String toExternal(IndexableField f)
FieldTypetoExternal in class DateFieldFieldType.toInternal(java.lang.String)public String indexedToReadable(String _indexedForm)
FieldTypeindexedToReadable in class DateFieldpublic CharsRef indexedToReadable(BytesRef input, CharsRef charsRef)
FieldTypeindexedToReadable in class DateFieldpublic String storedToIndexed(IndexableField f)
FieldTypestoredToIndexed in class FieldTypepublic IndexableField createField(SchemaField field, Object value, float boost)
FieldTypeBy 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 DateFieldFieldType.toInternal(java.lang.String)public Query getRangeQuery(QParser parser, SchemaField field, String min, String max, boolean minInclusive, boolean maxInclusive)
FieldTypeSolrQueryParser
 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 FieldTypefield - 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 Query getRangeQuery(QParser parser, SchemaField sf, Date min, Date max, boolean minInclusive, boolean maxInclusive)
DateFieldgetRangeQuery in class DateFieldCopyright © 2000-2013 Apache Software Foundation. All Rights Reserved.