Example usage for org.apache.lucene.queryparser.classic FastCharStream FastCharStream

List of usage examples for org.apache.lucene.queryparser.classic FastCharStream FastCharStream

Introduction

In this page you can find the example usage for org.apache.lucene.queryparser.classic FastCharStream FastCharStream.

Prototype

public FastCharStream(Reader r) 

Source Link

Document

Constructs from a Reader.

Usage

From source file:org.apache.vxquery.runtime.functions.index.CaseSensitiveQueryParser.java

License:Apache License

public CaseSensitiveQueryParser(String f, Analyzer a) {
    super(new FastCharStream(new StringReader("")));
    init(f, a);
}