Uses of Class
org.apache.lucene.document.Field
-
Packages that use Field Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.facet.index Indexing of document categoriesorg.apache.lucene.search.vectorhighlight This is an another highlighter implementation.org.apache.lucene.util Some utility classes. -
-
Uses of Field in org.apache.lucene.document
Methods in org.apache.lucene.document that return Field Modifier and Type Method Description Field
Document. getField(String name)
Deprecated.useDocument.getFieldable(java.lang.String)
instead and cast depending on data type.Field[]
Document. getFields(String name)
Deprecated.useDocument.getFieldable(java.lang.String)
instead and cast depending on data type. -
Uses of Field in org.apache.lucene.facet.index
Fields in org.apache.lucene.facet.index with type parameters of type Field Modifier and Type Field Description protected ArrayList<Field>
CategoryDocumentBuilder. fieldList
A list of fields which is filled at ancestors' construction and used duringCategoryDocumentBuilder.build(Document)
. -
Uses of Field in org.apache.lucene.search.vectorhighlight
Methods in org.apache.lucene.search.vectorhighlight that return Field Modifier and Type Method Description protected Field[]
BaseFragmentsBuilder. getFields(IndexReader reader, int docId, String fieldName)
Methods in org.apache.lucene.search.vectorhighlight with parameters of type Field Modifier and Type Method Description protected String
BaseFragmentsBuilder. getFragmentSource(StringBuilder buffer, int[] index, Field[] values, int startOffset, int endOffset)
protected String
BaseFragmentsBuilder. getFragmentSourceMSO(StringBuilder buffer, int[] index, Field[] values, int startOffset, int endOffset, int[] modifiedStartOffset)
protected String
BaseFragmentsBuilder. makeFragment(StringBuilder buffer, int[] index, Field[] values, FieldFragList.WeightedFragInfo fragInfo, String[] preTags, String[] postTags, Encoder encoder)
-
Uses of Field in org.apache.lucene.util
Methods in org.apache.lucene.util that return Field Modifier and Type Method Description static Field
LuceneTestCase. newField(String name, String value, Field.Index index)
Returns a new field instance.static Field
LuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index)
Returns a new field instance.static Field
LuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)
Returns a new Field instance.static Field
LuceneTestCase. newField(Random random, String name, String value, Field.Index index)
Returns a new field instance, using the specified random.static Field
LuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index)
Returns a new field instance, using the specified random.static Field
LuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)
Returns a new field instance, using the specified random.
-