Uses of Class
org.apache.lucene.document.Field
-
Packages that use Field Package Description org.apache.lucene.document The logical representation of aDocumentfor 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 FieldDocument. 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. fieldListA 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 StringBaseFragmentsBuilder. getFragmentSource(StringBuilder buffer, int[] index, Field[] values, int startOffset, int endOffset)protected StringBaseFragmentsBuilder. getFragmentSourceMSO(StringBuilder buffer, int[] index, Field[] values, int startOffset, int endOffset, int[] modifiedStartOffset)protected StringBaseFragmentsBuilder. 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 FieldLuceneTestCase. newField(String name, String value, Field.Index index)Returns a new field instance.static FieldLuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index)Returns a new field instance.static FieldLuceneTestCase. newField(String name, String value, Field.Store store, Field.Index index, Field.TermVector tv)Returns a new Field instance.static FieldLuceneTestCase. newField(Random random, String name, String value, Field.Index index)Returns a new field instance, using the specified random.static FieldLuceneTestCase. newField(Random random, String name, String value, Field.Store store, Field.Index index)Returns a new field instance, using the specified random.static FieldLuceneTestCase. 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.
-