Uses of Interface
org.apache.lucene.document.Fieldable
-
Packages that use Fieldable Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.document The logical representation of aDocumentfor indexing and searching. -
-
Uses of Fieldable in org.apache.lucene.analysis
Methods in org.apache.lucene.analysis with parameters of type Fieldable Modifier and Type Method Description intAnalyzer. getOffsetGap(Fieldable field)Just likeAnalyzer.getPositionIncrementGap(java.lang.String), except for Token offsets instead.intLimitTokenCountAnalyzer. getOffsetGap(Fieldable field)intPerFieldAnalyzerWrapper. getOffsetGap(Fieldable field)Return the offsetGap from the analyzer assigned to field -
Uses of Fieldable in org.apache.lucene.document
Classes in org.apache.lucene.document that implement Fieldable Modifier and Type Class Description classAbstractFieldBase class for Field implementationsclassFieldA field is a section of a Document.classNumericFieldThis class provides aFieldthat enables indexing of numeric values for efficient range filtering and sorting.Methods in org.apache.lucene.document that return Fieldable Modifier and Type Method Description FieldableDocument. getFieldable(String name)Returns a field with the given name if any exist in this document, or null.Fieldable[]Document. getFieldables(String name)Returns an array ofFieldables with the given name.Methods in org.apache.lucene.document that return types with arguments of type Fieldable Modifier and Type Method Description List<Fieldable>Document. getFields()Returns a List of all the fields in a document.Methods in org.apache.lucene.document with parameters of type Fieldable Modifier and Type Method Description voidDocument. add(Fieldable field)Adds a field to a document.
-