Package org.apache.lucene.collation.tokenattributes

Examples of org.apache.lucene.collation.tokenattributes.CollatedTermAttributeImpl


    this.collator = collator;
  }
 
  @Override
  public CollatedTermAttributeImpl createInstance() {
    return new CollatedTermAttributeImpl(collator);
  }
View Full Code Here


 
  @Override
  public AttributeImpl createAttributeInstance(
      Class<? extends Attribute> attClass) {
    return attClass.isAssignableFrom(CollatedTermAttributeImpl.class)
    ? new CollatedTermAttributeImpl(collator)
    : delegate.createAttributeInstance(attClass);
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.collation.tokenattributes.CollatedTermAttributeImpl

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.