Serialized Form
Package org.apache.lucene.analysis |
startOffset
int startOffset
endOffset
int endOffset
type
String type
flags
int flags
payload
Payload payload
positionIncrement
int positionIncrement
Package org.apache.lucene.analysis.tokenattributes |
termBuffer
char[] termBuffer
termLength
int termLength
flags
int flags
keyword
boolean keyword
startOffset
int startOffset
endOffset
int endOffset
payload
Payload payload
positionIncrement
int positionIncrement
positionLength
int positionLength
type
String type
Package org.apache.lucene.document |
name
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
lazy
boolean lazy
indexOptions
FieldInfo.IndexOptions indexOptions
boost
float boost
fieldsData
Object fieldsData
tokenStream
TokenStream tokenStream
binaryLength
int binaryLength
binaryOffset
int binaryOffset
fields
List<E> fields
boost
float boost
fieldSelections
Map<K,V> fieldSelections
type
NumericField.DataType type
precisionStep
int precisionStep
fieldsToLoad
Set<E> fieldsToLoad
lazyFieldsToLoad
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
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
field
String field
text
String text
startOffset
int startOffset
endOffset
int endOffset
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
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
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
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
ArrayList<E> clauses
disableCoord
boolean disableCoord
minNrShouldMatch
int minNrShouldMatch
similarity
Similarity similarity
- The Similarity implementation.
weights
ArrayList<E> weights
maxCoord
int maxCoord
disableCoord
boolean disableCoord
filter
SpanFilter filter
cache
org.apache.lucene.search.CachingWrapperFilter.FilterCache<T> cache
- A transient Filter cache (package private because of test)
hitCount
int hitCount
missCount
int missCount
filter
Filter filter
cache
org.apache.lucene.search.CachingWrapperFilter.FilterCache<T> cache
hitCount
int hitCount
missCount
int missCount
match
Boolean match
filter
Filter filter
query
Query query
innerWeight
Weight innerWeight
similarity
Similarity similarity
queryNorm
float queryNorm
queryWeight
float queryWeight
discountOverlaps
boolean discountOverlaps
disjuncts
ArrayList<E> disjuncts
tieBreakerMultiplier
float tieBreakerMultiplier
similarity
Similarity similarity
- The Similarity implementation.
weights
ArrayList<E> weights
- The Weights for our subqueries, in 1-1 correspondence with disjuncts
value
float value
description
String description
details
ArrayList<E> details
field
String field
parser
FieldCache.Parser parser
lowerVal
Object lowerVal
upperVal
Object upperVal
includeLower
boolean includeLower
includeUpper
boolean includeUpper
field
String field
terms
String[] terms
fields
Object[] 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 have been returned from
the
value
method corresponding
FieldComparator used to sort this field.
- See Also:
Sort
,
Searcher.search(Query,Filter,int,Sort)
field
String field
negate
boolean negate
slot
int slot
query
Query query
filter
Filter filter
minimumSimilarity
float minimumSimilarity
prefixLength
int prefixLength
termLongEnough
boolean termLongEnough
term
Term term
normsField
String normsField
field
String field
termArrays
ArrayList<E> termArrays
positions
ArrayList<E> positions
slop
int slop
rewriteMethod
MultiTermQuery.RewriteMethod rewriteMethod
query
MultiTermQuery query
n
int n
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
field
String field
precisionStep
int precisionStep
dataType
NumericField.DataType dataType
min
Number min
max
Number max
minInclusive
boolean minInclusive
maxInclusive
boolean maxInclusive
field
String field
terms
ArrayList<E> terms
positions
ArrayList<E> positions
maxPosition
int maxPosition
slop
int slop
prefix
Term prefix
boost
float boost
query
Query query
score
float score
- The score of this document for the query.
doc
int doc
- Expert: A hit document's number.
- See Also:
Searcher.doc(int)
shardIndex
int shardIndex
- Only set by
TopDocs.merge(org.apache.lucene.search.Sort, int, org.apache.lucene.search.TopDocs[])
hasIDFExplainWithDocFreqAPI
boolean hasIDFExplainWithDocFreqAPI
delegee
Similarity delegee
- Deprecated.
fields
SortField[] fields
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
field
String field
type
int type
locale
Locale locale
reverse
boolean reverse
parser
FieldCache.Parser parser
comparatorSource
FieldComparatorSource comparatorSource
missingValue
Object missingValue
query
SpanQuery query
term
Term term
lowerTerm
String lowerTerm
upperTerm
String upperTerm
collator
Collator collator
field
String field
includeLower
boolean includeLower
includeUpper
boolean includeUpper
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.
size
int size
termContainsWildcard
boolean termContainsWildcard
termIsPrefix
boolean termIsPrefix
term
Term term
Package org.apache.lucene.search.function |
parser
FieldCache.ByteParser parser
subQuery
Query subQuery
valSrcQueries
ValueSourceQuery[] valSrcQueries
strict
boolean strict
field
String field
parser
FieldCache.FloatParser parser
parser
FieldCache.IntParser parser
field
String field
field
String field
parser
FieldCache.ShortParser parser
valSrc
ValueSource valSrc
Package org.apache.lucene.search.payloads |
fieldName
String fieldName
function
PayloadFunction function
function
PayloadFunction function
includeSpanScore
boolean includeSpanScore
Package org.apache.lucene.search.spans |
maskedQuery
SpanQuery maskedQuery
field
String field
query
MultiTermQuery query
getFieldMethod
Method getFieldMethod
getTermMethod
Method getTermMethod
delegate
TopTermsRewrite<Q extends Query> delegate
payloadToMatch
Collection<E> payloadToMatch
clauses
List<E> clauses
slop
int slop
inOrder
boolean inOrder
field
String field
collectPayloads
boolean collectPayloads
include
SpanQuery include
exclude
SpanQuery exclude
clauses
List<E> clauses
field
String field
payloadToMatch
Collection<E> payloadToMatch
match
SpanQuery match
start
int start
end
int end
term
Term term
similarity
Similarity similarity
value
float value
idf
float idf
queryNorm
float queryNorm
queryWeight
float queryWeight
terms
Set<E> terms
query
SpanQuery query
idfExp
Explanation.IDFExplanation idfExp
Package org.apache.lucene.store |
serialVersionUID: 1L
fileMap
Map<K,V> fileMap
sizeInBytes
AtomicLong sizeInBytes
serialVersionUID: 1L
buffers
ArrayList<E> buffers
length
long length
directory
RAMDirectory directory
sizeInBytes
long sizeInBytes
lastModified
long lastModified
Package org.apache.lucene.util |
enableBackwards
boolean enableBackwards
- Deprecated. this will be removed in Lucene 4.0.
- When
true
(default), if a subclass overrides AttributeImpl.toString()
,
its output is parsed by AttributeImpl.reflectWith(org.apache.lucene.util.AttributeReflector)
and used for attribute reflection.
This is added to enable attribute implementations from Lucene 2.9 or 3.0 to
work correctly with reflection.
serialVersionUID: -6761513279741915432L
map
Map<K,V> map
bits
long[] bits
wlen
int wlen
numBits
long numBits
readResolve
protected Object readResolve()
throws ObjectStreamException
- Deprecated.
- Resolves the deserialized instance to the local reference for accurate
equals() and == comparisons.
- Throws:
ObjectStreamException
name
String name
- Deprecated.
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.