Package org.apache.lucene.collation.tokenattributes

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


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


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

TOP

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

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.