Uses of Class
org.apache.lucene.util.Version

Packages that use Version
org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens. 
org.apache.lucene.analysis.standard A fast grammar-based tokenizer constructed with JFlex. 
org.apache.lucene.queryParser A simple query parser implemented with JavaCC. 
org.apache.lucene.util Some utility classes. 
 

Uses of Version in org.apache.lucene.analysis
 

Methods in org.apache.lucene.analysis with parameters of type Version
static boolean StopFilter.getEnablePositionIncrementsVersionDefault(Version matchVersion)
          Returns version-dependent default for enablePositionIncrements.
 

Constructors in org.apache.lucene.analysis with parameters of type Version
StopAnalyzer(Version matchVersion)
          Builds an analyzer which removes words in StopAnalyzer.ENGLISH_STOP_WORDS_SET.
StopAnalyzer(Version matchVersion, File stopwordsFile)
          Builds an analyzer with the stop words from the given file.
StopAnalyzer(Version matchVersion, Reader stopwords)
          Builds an analyzer with the stop words from the given reader.
StopAnalyzer(Version matchVersion, Set<?> stopWords)
          Builds an analyzer with the stop words from the given set.
 

Uses of Version in org.apache.lucene.analysis.standard
 

Constructors in org.apache.lucene.analysis.standard with parameters of type Version
StandardAnalyzer(Version matchVersion)
          Builds an analyzer with the default stop words (StandardAnalyzer.STOP_WORDS_SET).
StandardAnalyzer(Version matchVersion, File stopwords)
          Builds an analyzer with the stop words from the given file.
StandardAnalyzer(Version matchVersion, Reader stopwords)
          Builds an analyzer with the stop words from the given reader.
StandardAnalyzer(Version matchVersion, Set<?> stopWords)
          Builds an analyzer with the given stop words.
StandardTokenizer(Version matchVersion, AttributeSource.AttributeFactory factory, Reader input)
          Creates a new StandardTokenizer with a given AttributeSource.AttributeFactory
StandardTokenizer(Version matchVersion, AttributeSource source, Reader input)
          Creates a new StandardTokenizer with a given AttributeSource.
StandardTokenizer(Version matchVersion, Reader input)
          Creates a new instance of the StandardTokenizer.
 

Uses of Version in org.apache.lucene.queryParser
 

Methods in org.apache.lucene.queryParser with parameters of type Version
static Query MultiFieldQueryParser.parse(Version matchVersion, String[] queries, String[] fields, Analyzer analyzer)
          Parses a query which searches on the fields specified.
static Query MultiFieldQueryParser.parse(Version matchVersion, String[] queries, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer)
          Parses a query, searching on the fields specified.
static Query MultiFieldQueryParser.parse(Version matchVersion, String query, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer)
          Parses a query, searching on the fields specified.
 

Constructors in org.apache.lucene.queryParser with parameters of type Version
MultiFieldQueryParser(Version matchVersion, String[] fields, Analyzer analyzer)
          Creates a MultiFieldQueryParser.
MultiFieldQueryParser(Version matchVersion, String[] fields, Analyzer analyzer, Map<String,Float> boosts)
          Creates a MultiFieldQueryParser.
QueryParser(Version matchVersion, String f, Analyzer a)
          Constructs a query parser.
 

Uses of Version in org.apache.lucene.util
 

Methods in org.apache.lucene.util that return Version
static Version Version.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Version[] Version.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.apache.lucene.util with parameters of type Version
 boolean Version.onOrAfter(Version other)
           
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.