Uses of Class
org.apache.lucene.util.AttributeSource.AttributeFactory
-
Packages that use AttributeSource.AttributeFactory Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens.org.apache.lucene.analysis.standard Standards-based analyzers implemented with JFlex.org.apache.lucene.util Some utility classes. -
-
Uses of AttributeSource.AttributeFactory in org.apache.lucene.analysis
Subclasses of AttributeSource.AttributeFactory in org.apache.lucene.analysis Modifier and Type Class Description static classToken.TokenAttributeFactoryExpert: Creates a TokenAttributeFactory returningTokenas instance for the basic attributes and for all other attributes calls the given delegate factory.Fields in org.apache.lucene.analysis declared as AttributeSource.AttributeFactory Modifier and Type Field Description static AttributeSource.AttributeFactoryToken. TOKEN_ATTRIBUTE_FACTORYConvenience factory that returnsTokenas implementation for the basic attributes and return the default impl (with "Impl" appended) for all other attributes.Constructors in org.apache.lucene.analysis with parameters of type AttributeSource.AttributeFactory Constructor Description CharTokenizer(AttributeSource.AttributeFactory factory, Reader input)Deprecated.CharTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader input)Creates a newCharTokenizerinstanceKeywordTokenizer(AttributeSource.AttributeFactory factory, Reader input, int bufferSize)LetterTokenizer(AttributeSource.AttributeFactory factory, Reader in)Deprecated.LetterTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader in)Construct a new LetterTokenizer using a givenAttributeSource.AttributeFactory.LowerCaseTokenizer(AttributeSource.AttributeFactory factory, Reader in)Deprecated.LowerCaseTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader in)Construct a new LowerCaseTokenizer using a givenAttributeSource.AttributeFactory.NumericTokenStream(AttributeSource.AttributeFactory factory, int precisionStep)Expert: Creates a token stream for numeric values with the specifiedprecisionStepusing the givenAttributeSource.AttributeFactory.TokenAttributeFactory(AttributeSource.AttributeFactory delegate)Expert: Creates an AttributeFactory returningTokenas instance for the basic attributes and for all other attributes calls the given delegate factory.Tokenizer(AttributeSource.AttributeFactory factory)Deprecated.useTokenizer(AttributeSource.AttributeFactory, Reader)instead.Tokenizer(AttributeSource.AttributeFactory factory, Reader input)Construct a token stream processing the given input using the given AttributeFactory.TokenStream(AttributeSource.AttributeFactory factory)A TokenStream using the supplied AttributeFactory for creating newAttributeinstances.WhitespaceTokenizer(AttributeSource.AttributeFactory factory, Reader in)Deprecated.WhitespaceTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader in)Construct a new WhitespaceTokenizer using a givenAttributeSource.AttributeFactory. -
Uses of AttributeSource.AttributeFactory in org.apache.lucene.analysis.standard
Constructors in org.apache.lucene.analysis.standard with parameters of type AttributeSource.AttributeFactory Constructor Description ClassicTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader input)Creates a new ClassicTokenizer with a givenAttributeSource.AttributeFactoryStandardTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader input)Creates a new StandardTokenizer with a givenAttributeSource.AttributeFactoryUAX29URLEmailTokenizer(AttributeSource.AttributeFactory factory, Reader input)Deprecated.UAX29URLEmailTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader input)Creates a new UAX29URLEmailTokenizer with a givenAttributeSource.AttributeFactory -
Uses of AttributeSource.AttributeFactory in org.apache.lucene.util
Fields in org.apache.lucene.util declared as AttributeSource.AttributeFactory Modifier and Type Field Description static AttributeSource.AttributeFactoryAttributeSource.AttributeFactory. DEFAULT_ATTRIBUTE_FACTORYThis is the default factory that createsAttributeImpls using the class name of the suppliedAttributeinterface class by appendingImplto it.Methods in org.apache.lucene.util that return AttributeSource.AttributeFactory Modifier and Type Method Description AttributeSource.AttributeFactoryAttributeSource. getAttributeFactory()returns the used AttributeFactory.Constructors in org.apache.lucene.util with parameters of type AttributeSource.AttributeFactory Constructor Description AttributeSource(AttributeSource.AttributeFactory factory)An AttributeSource using the suppliedAttributeSource.AttributeFactoryfor creating newAttributeinstances.
-