Examples of CircularCharArrayBuffer


Examples of it.unimi.dsi.util.CircularCharArrayBuffer

   *
   * @param maxBefore maximum number of words to be considered before of the anchor.
   * @param maxAfter maximum number of words to be considered after the anchor.
   */
  public AnchorExtractor( int maxBefore, int maxAnchor, int maxAfter ) {
    preAnchor = new CircularCharArrayBuffer( maxBefore );
    anchor = new MutableString( maxAnchor );
    postAnchor = new MutableString( maxAfter );
    result = new MutableString( maxBefore + maxAnchor + maxAfter );
    this.maxAfter = maxAfter;
    this.maxAnchor = maxAnchor;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.