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 ENGLISH_STOP_WORDS.
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).
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 boosts)
          Creates a MultiFieldQueryParser.
QueryParser(Version matchVersion, String f, Analyzer a)
          Constructs a query parser.
 

Uses of Version in org.apache.lucene.util
 

Fields in org.apache.lucene.util declared as Version
static Version Version.LUCENE_20
          Match settings and bugs in Lucene's 2.0 release.
static Version Version.LUCENE_21
          Match settings and bugs in Lucene's 2.1 release.
static Version Version.LUCENE_22
          Match settings and bugs in Lucene's 2.2 release.
static Version Version.LUCENE_23
          Match settings and bugs in Lucene's 2.3 release.
static Version Version.LUCENE_24
          Match settings and bugs in Lucene's 2.4 release.
static Version Version.LUCENE_29
          Match settings and bugs in Lucene's 2.9 release.
static Version Version.LUCENE_CURRENT
          Deprecated. Use an actual version instead.
 

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.