Package org.apache.lucene.util

Examples of org.apache.lucene.util.AttributeFactory$StaticImplementationAttributeFactory


*/
public abstract class NumericTokenizer extends Tokenizer {

    /** Make this tokenizer get attributes from the delegate token stream. */
    private static final AttributeFactory delegatingAttributeFactory(final AttributeSource source) {
        return new AttributeFactory() {
            @Override
            public AttributeImpl createAttributeInstance(Class<? extends Attribute> attClass) {
                return (AttributeImpl) source.addAttribute(attClass);
            }
        };
View Full Code Here

TOP

Related Classes of org.apache.lucene.util.AttributeFactory$StaticImplementationAttributeFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.