Package org.terrier.utility

Examples of org.terrier.utility.LookAheadStream


   * @return Document the object of the current document to process.
   */
  public Document getDocument() {
    try{
      InputStream is = tags_CaseSensitive
            ? new LookAheadStream(br, desiredEncoding == null ? end_docTag.getBytes() : end_docTag.getBytes(desiredEncoding))
            : new LookAheadStreamCaseInsensitive(br, end_docTag);
        return documentClass.getConstructor(InputStream.class, Map.class, Tokeniser.class).newInstance(is, DocProperties, tokeniser);
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
View Full Code Here

TOP

Related Classes of org.terrier.utility.LookAheadStream

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.