Serialized Form
Package org.apache.lucene.analysis |
termText
java.lang.String termText
- Deprecated. We will remove this when we remove the
deprecated APIs
termBuffer
char[] termBuffer
- Deprecated. This will be made private. Instead, use:
Token.termBuffer()
,
Token.setTermBuffer(char[], int, int)
,
Token.setTermBuffer(String)
, or
Token.setTermBuffer(String, int, int)
- Characters for the term text.
termLength
int termLength
- Deprecated. This will be made private. Instead, use:
Token.termLength()
, or @{link setTermLength(int)}.- Length of term text in the buffer.
startOffset
int startOffset
- Deprecated. This will be made private. Instead, use:
Token.startOffset()
, or @{link setStartOffset(int)}.- Start in source text.
endOffset
int endOffset
- Deprecated. This will be made private. Instead, use:
Token.endOffset()
, or @{link setEndOffset(int)}.- End in source text.
type
java.lang.String type
- Deprecated. This will be made private. Instead, use:
Token.type()
, or @{link setType(String)}.- The lexical type of the token.
flags
int flags
payload
Payload payload
- Deprecated. This will be made private. Instead, use:
Token.getPayload()
, or @{link setPayload(Payload)}.
positionIncrement
int positionIncrement
- Deprecated. This will be made private. Instead, use:
Token.getPositionIncrement()
, or @{link setPositionIncrement(String)}.
Package org.apache.lucene.analysis.tokenattributes |
flags
int flags
startOffset
int startOffset
endOffset
int endOffset
payload
Payload payload
positionIncrement
int positionIncrement
termBuffer
char[] termBuffer
termLength
int termLength
type
java.lang.String type
Package org.apache.lucene.document |
name
java.lang.String name
storeTermVector
boolean storeTermVector
storeOffsetWithTermVector
boolean storeOffsetWithTermVector
storePositionWithTermVector
boolean storePositionWithTermVector
omitNorms
boolean omitNorms
isStored
boolean isStored
isIndexed
boolean isIndexed
isTokenized
boolean isTokenized
isBinary
boolean isBinary
isCompressed
boolean isCompressed
lazy
boolean lazy
omitTermFreqAndPositions
boolean omitTermFreqAndPositions
boost
float boost
fieldsData
java.lang.Object fieldsData
tokenStream
TokenStream tokenStream
binaryLength
int binaryLength
binaryOffset
int binaryOffset
fields
java.util.List<E> fields
boost
float boost
id
int id
fieldSelections
java.util.Map<K,V> fieldSelections
tokenStream
NumericTokenStream tokenStream
fieldsToLoad
java.util.Set<E> fieldsToLoad
lazyFieldsToLoad
java.util.Set<E> lazyFieldsToLoad
Package org.apache.lucene.index |
dir
Directory dir
data
byte[] data
- the byte array containing the payload data
offset
int offset
- the offset within the byte array
length
int length
- the length of the payload data
counter
int counter
version
long version
- counts how often the index has been changed by adding or deleting docs.
starting with the current time in milliseconds forces to create unique version numbers.
generation
long generation
lastGeneration
long lastGeneration
userData
java.util.Map<K,V> userData
pendingSegnOutput
ChecksumIndexOutput pendingSegnOutput
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
field
java.lang.String field
text
java.lang.String text
startOffset
int startOffset
endOffset
int endOffset
Package org.apache.lucene.messages |
serialVersionUID: -3077643314630884523L
key
java.lang.String key
arguments
java.lang.Object[] arguments
Package org.apache.lucene.queryParser |
serialVersionUID: 1L
currentToken
Token currentToken
- This is the last token that has been consumed successfully. If
this object has been created due to a parse error, the token
followng this token will (therefore) be the first error token.
expectedTokenSequences
int[][] expectedTokenSequences
- Each entry in this array is an array of integers. Each array
of integers represents a sequence of tokens (by their ordinal
values) that is expected at this point of the parse.
tokenImage
java.lang.String[] tokenImage
- This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred. This array is
defined in the generated ...Constants interface.
eol
java.lang.String eol
- The end of line string for this machine.
serialVersionUID: 1L
kind
int kind
- An integer that describes the kind of this token. This numbering
system is determined by JavaCCParser, and a table of these numbers is
stored in the file ...Constants.java.
beginLine
int beginLine
- The line number of the first character of this Token.
beginColumn
int beginColumn
- The column number of the first character of this Token.
endLine
int endLine
- The line number of the last character of this Token.
endColumn
int endColumn
- The column number of the last character of this Token.
image
java.lang.String image
- The string image of the token.
next
Token next
- A reference to the next regular (non-special) token from the input
stream. If this is the last token from the input stream, or if the
token manager has not read tokens beyond this one, this field is
set to null. This is true only if this token is also a regular
token. Otherwise, see below for a description of the contents of
this field.
specialToken
Token specialToken
- This field is used to access special tokens that occur prior to this
token, but after the immediately preceding regular (non-special) token.
If there are no such special tokens, this field is set to null.
When there are more than one such special token, this field refers
to the last of these special tokens, which in turn refers to the next
previous special token through its specialToken field, and so on
until the first special token (whose specialToken field is null).
The next fields of special tokens refer to other special tokens that
immediately follow it (without an intervening regular token). If there
is no such token, this field is null.
serialVersionUID: 1L
errorCode
int errorCode
- Indicates the reason why the exception is thrown. It will have
one of the above 4 values.
Package org.apache.lucene.search |
query
Query query
- The query whose matching documents are combined by the boolean query.
occur
BooleanClause.Occur occur
clauses
java.util.ArrayList<E> clauses
disableCoord
boolean disableCoord
minNrShouldMatch
int minNrShouldMatch
similarity
Similarity similarity
- The Similarity implementation.
weights
java.util.ArrayList<E> weights
filter
SpanFilter filter
cache
org.apache.lucene.search.CachingWrapperFilter.FilterCache cache
- A transient Filter cache.
hitCount
int hitCount
missCount
int missCount
filter
Filter filter
cache
org.apache.lucene.search.CachingWrapperFilter.FilterCache cache
hitCount
int hitCount
missCount
int missCount
match
java.lang.Boolean match
filter
Filter filter
similarity
Similarity similarity
queryNorm
float queryNorm
queryWeight
float queryWeight
discountOverlaps
boolean discountOverlaps
disjuncts
java.util.ArrayList<E> disjuncts
tieBreakerMultiplier
float tieBreakerMultiplier
similarity
Similarity similarity
- The Similarity implementation.
weights
java.util.ArrayList<E> weights
- The Weights for our subqueries, in 1-1 correspondence with disjuncts
value
float value
description
java.lang.String description
details
java.util.ArrayList<E> details
field
java.lang.String field
parser
FieldCache.Parser parser
lowerVal
java.lang.Object lowerVal
upperVal
java.lang.Object upperVal
includeLower
boolean includeLower
includeUpper
boolean includeUpper
field
java.lang.String field
terms
java.lang.String[] terms
fields
java.lang.Comparable<T>[] fields
- Expert: The values which are used to sort the referenced document.
The order of these will match the original sort criteria given by a
Sort object. Each Object will be either an Integer, Float or String,
depending on the type of values in the terms of the original field.
- See Also:
Sort
,
Searcher.search(Query,Filter,int,Sort)
query
Query query
filter
Filter filter
minimumSimilarity
float minimumSimilarity
prefixLength
int prefixLength
termLongEnough
boolean termLongEnough
term
Term term
doc
Document doc
- Deprecated.
resolved
boolean resolved
- Deprecated.
hits
Hits hits
- Deprecated.
hitNumber
int hitNumber
- Deprecated.
normsField
java.lang.String normsField
field
java.lang.String field
termArrays
java.util.ArrayList<E> termArrays
positions
java.util.ArrayList<E> positions
slop
int slop
term
Term term
rewriteMethod
MultiTermQuery.RewriteMethod rewriteMethod
termCountCutoff
int termCountCutoff
docCountPercent
double docCountPercent
query
MultiTermQuery query
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
field
java.lang.String field
precisionStep
int precisionStep
valSize
int valSize
min
java.lang.Number min
max
java.lang.Number max
minInclusive
boolean minInclusive
maxInclusive
boolean maxInclusive
field
java.lang.String field
terms
java.util.ArrayList<E> terms
positions
java.util.ArrayList<E> positions
maxPosition
int maxPosition
slop
int slop
prefix
Term prefix
boost
float boost
query
Query query
delegate
TermRangeQuery delegate
- Deprecated.
score
float score
- Expert: The score of this document for the query.
doc
int doc
- Expert: A hit document's number.
- See Also:
Searcher.doc(int)
supportedMethods
org.apache.lucene.search.Similarity.MethodSupport supportedMethods
- Deprecated. Remove this when old API is removed!
delegee
Similarity delegee
fields
SortField[] fields
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
field
java.lang.String field
type
int type
locale
java.util.Locale locale
reverse
boolean reverse
factory
SortComparatorSource factory
parser
FieldCache.Parser parser
comparatorSource
FieldComparatorSource comparatorSource
useLegacy
boolean useLegacy
query
SpanQuery query
term
Term term
lowerTerm
java.lang.String lowerTerm
upperTerm
java.lang.String upperTerm
collator
java.text.Collator collator
field
java.lang.String field
includeLower
boolean includeLower
includeUpper
boolean includeUpper
timeAllowed
long timeAllowed
timeElapsed
long timeElapsed
lastDocCollected
int lastDocCollected
timeAllowed
long timeAllowed
timeElapsed
long timeElapsed
lastDocCollected
int lastDocCollected
totalHits
int totalHits
- The total number of hits for the query.
scoreDocs
ScoreDoc[] scoreDocs
- The top hits for the query.
maxScore
float maxScore
- Stores the maximum score value encountered, needed for normalizing.
fields
SortField[] fields
- The fields which were used to sort results by.
termContainsWildcard
boolean termContainsWildcard
term
Term term
Package org.apache.lucene.search.function |
parser
FieldCache.ByteParser parser
subQuery
Query subQuery
valSrcQueries
ValueSourceQuery[] valSrcQueries
strict
boolean strict
field
java.lang.String field
parser
FieldCache.FloatParser parser
parser
FieldCache.IntParser parser
other
ValueSource other
- Deprecated.
field
java.lang.String field
field
java.lang.String field
parser
FieldCache.ShortParser parser
valSrc
ValueSource valSrc
Package org.apache.lucene.search.payloads |
fieldName
java.lang.String fieldName
function
PayloadFunction function
function
PayloadFunction function
includeSpanScore
boolean includeSpanScore
Package org.apache.lucene.search.spans |
maskedQuery
SpanQuery maskedQuery
field
java.lang.String field
match
SpanQuery match
end
int end
clauses
java.util.List<E> clauses
slop
int slop
inOrder
boolean inOrder
field
java.lang.String field
collectPayloads
boolean collectPayloads
include
SpanQuery include
exclude
SpanQuery exclude
clauses
java.util.List<E> clauses
field
java.lang.String field
term
Term term
similarity
Similarity similarity
value
float value
idf
float idf
queryNorm
float queryNorm
queryWeight
float queryWeight
terms
java.util.Set<E> terms
query
SpanQuery query
idfExp
Explanation.IDFExplanation idfExp
Package org.apache.lucene.store |
serialVersionUID: 1L
fileMap
java.util.HashMap<K,V> fileMap
sizeInBytes
long sizeInBytes
serialVersionUID: 1L
buffers
java.util.ArrayList<E> buffers
length
long length
directory
RAMDirectory directory
sizeInBytes
long sizeInBytes
lastModified
long lastModified
Package org.apache.lucene.util |
bits
long[] bits
wlen
int wlen
readResolve
protected java.lang.Object readResolve()
throws java.io.ObjectStreamException
- Resolves the deserialized instance to the local reference for accurate
equals() and == comparisons.
- Throws:
java.io.ObjectStreamException
name
java.lang.String name
v
int v
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.