Uses of Class
org.apache.lucene.index.DocValues.Type

Packages that use DocValues.Type
org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index. 
org.apache.lucene.codecs.lucene40 Lucene 4.0 file format. 
org.apache.lucene.codecs.lucene40.values Default DocValues implementation for Lucene 4.0 indexes. 
org.apache.lucene.codecs.sep Sep: base support for separate files (doc,frq,pos,skp,pyl) 
org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings. 
org.apache.lucene.document The logical representation of a Document for indexing and searching. 
org.apache.lucene.index Code to maintain and access indices. 
 

Uses of DocValues.Type in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs that return DocValues.Type
protected  DocValues.Type PerDocConsumer.getDocValuesType(FieldInfo info)
          Returns the DocValues DocValues.Type for the given FieldInfo.
protected  DocValues.Type PerDocProducerBase.getDocValuesType(FieldInfo info)
           
protected abstract  DocValues.Type DocValuesConsumer.getType()
           
 

Methods in org.apache.lucene.codecs with parameters of type DocValues.Type
abstract  DocValuesConsumer PerDocConsumer.addValuesField(DocValues.Type type, FieldInfo field)
          Adds a new DocValuesField
static DocValuesArraySource DocValuesArraySource.forType(DocValues.Type type)
           
protected abstract  DocValues PerDocProducerBase.loadDocValues(int docCount, Directory dir, String id, DocValues.Type type, IOContext context)
          Loads a DocValues instance depending on the given DocValues.Type.
 

Uses of DocValues.Type in org.apache.lucene.codecs.lucene40
 

Methods in org.apache.lucene.codecs.lucene40 that return DocValues.Type
 DocValues.Type Lucene40FieldInfosReader.getDocValuesType(byte b)
           
protected  DocValues.Type Lucene40NormsFormat.Lucene40NormsDocValuesProducer.getDocValuesType(FieldInfo info)
           
protected  DocValues.Type Lucene40NormsFormat.Lucene40NormsDocValuesConsumer.getDocValuesType(FieldInfo info)
           
 

Methods in org.apache.lucene.codecs.lucene40 with parameters of type DocValues.Type
 byte Lucene40FieldInfosWriter.docValuesByte(DocValues.Type type)
           
protected  DocValues Lucene40DocValuesProducer.loadDocValues(int docCount, Directory dir, String id, DocValues.Type type, IOContext context)
           
 

Uses of DocValues.Type in org.apache.lucene.codecs.lucene40.values
 

Methods in org.apache.lucene.codecs.lucene40.values with parameters of type DocValues.Type
 DocValuesConsumer DocValuesWriterBase.addValuesField(DocValues.Type valueType, FieldInfo field)
           
static DocValues Ints.getValues(Directory dir, String id, int numDocs, DocValues.Type type, IOContext context)
           
static DocValues Floats.getValues(Directory dir, String id, int maxDoc, IOContext context, DocValues.Type type)
           
static DocValuesConsumer Ints.getWriter(Directory dir, String id, Counter bytesUsed, DocValues.Type type, IOContext context)
           
static DocValuesConsumer Floats.getWriter(Directory dir, String id, Counter bytesUsed, IOContext context, DocValues.Type type)
           
 

Uses of DocValues.Type in org.apache.lucene.codecs.sep
 

Methods in org.apache.lucene.codecs.sep with parameters of type DocValues.Type
protected  DocValues SepDocValuesProducer.loadDocValues(int docCount, Directory dir, String id, DocValues.Type type, IOContext context)
           
 

Uses of DocValues.Type in org.apache.lucene.codecs.simpletext
 

Fields in org.apache.lucene.codecs.simpletext declared as DocValues.Type
protected  DocValues.Type SimpleTextDocValuesConsumer.type
           
 

Methods in org.apache.lucene.codecs.simpletext that return DocValues.Type
 DocValues.Type SimpleTextFieldInfosReader.docValuesType(String dvType)
           
protected  DocValues.Type SimpleTextNormsFormat.SimpleTextNormsPerDocProducer.getDocValuesType(FieldInfo info)
           
protected  DocValues.Type SimpleTextNormsFormat.SimpleTextNormsPerDocConsumer.getDocValuesType(FieldInfo info)
           
protected  DocValues.Type SimpleTextDocValuesConsumer.getType()
           
 

Methods in org.apache.lucene.codecs.simpletext with parameters of type DocValues.Type
protected  DocValues SimpleTextPerDocProducer.loadDocValues(int docCount, Directory dir, String id, DocValues.Type type, IOContext context)
           
 

Constructors in org.apache.lucene.codecs.simpletext with parameters of type DocValues.Type
SimpleTextDocValuesConsumer(String segment, Directory dir, IOContext ctx, DocValues.Type type, String segmentSuffix)
           
 

Uses of DocValues.Type in org.apache.lucene.document
 

Methods in org.apache.lucene.document that return DocValues.Type
 DocValues.Type FieldType.docValueType()
           
 

Methods in org.apache.lucene.document with parameters of type DocValues.Type
 void FieldType.setDocValueType(DocValues.Type type)
           
 

Uses of DocValues.Type in org.apache.lucene.index
 

Fields in org.apache.lucene.index declared as DocValues.Type
protected  DocValues.Type DocValues.Source.type
           
 

Methods in org.apache.lucene.index that return DocValues.Type
 DocValues.Type IndexableFieldType.docValueType()
          DocValues type; if non-null then the field's value will be indexed into docValues
 DocValues.Type FieldInfo.getDocValuesType()
           
 DocValues.Type FieldInfo.getNormType()
           
abstract  DocValues.Type DocValues.getType()
          Returns the DocValues.Type of this DocValues instance
 DocValues.Type DocValues.Source.getType()
          Returns the DocValues.Type of this source.
 DocValues.Type MultiDocValues.getType()
           
 DocValues.Type MultiDocValues.EmptyDocValues.getType()
           
 DocValues.Type MultiDocValues.EmptyFixedDocValues.getType()
           
 DocValues.Type Norm.type()
          Returns the DocValues.Type for this norm.
static DocValues.Type DocValues.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DocValues.Type[] DocValues.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.lucene.index with parameters of type DocValues.Type
static DocValues.SortedSource DocValues.getDefaultSortedSource(DocValues.Type type, int size)
          Returns a SortedSource that always returns default (missing) values for all documents.
static DocValues.Source DocValues.getDefaultSource(DocValues.Type type)
          Returns a Source that always returns default (missing) values for all documents.
static SortedBytesMergeUtils.MergeContext SortedBytesMergeUtils.init(DocValues.Type type, DocValues[] docValues, Comparator<BytesRef> comp, int mergeDocCount)
           
 

Constructors in org.apache.lucene.index with parameters of type DocValues.Type
DocValues.SortedSource(DocValues.Type type, Comparator<BytesRef> comparator)
           
DocValues.Source(DocValues.Type type)
           
FieldInfo(String name, boolean indexed, int number, boolean storeTermVector, boolean omitNorms, boolean storePayloads, FieldInfo.IndexOptions indexOptions, DocValues.Type docValues, DocValues.Type normsType, Map<String,String> attributes)
           
MultiDocValues.EmptyDocValues(int maxDoc, DocValues.Type type)
           
MultiDocValues.EmptyFixedDocValues(int maxDoc, DocValues.Type type, int valueSize)
           
SortedBytesMergeUtils.MergeContext(Comparator<BytesRef> comp, int mergeDocCount, int size, DocValues.Type type)
           
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.