Package org.apache.lucene.index
Class FieldUpdatesBuffer.BufferedUpdate
- java.lang.Object
-
- org.apache.lucene.index.FieldUpdatesBuffer.BufferedUpdate
-
- Enclosing class:
- FieldUpdatesBuffer
static class FieldUpdatesBuffer.BufferedUpdate extends java.lang.ObjectStruct like class that is used to iterate over all updates in this buffer
-
-
Field Summary
Fields Modifier and Type Field Description (package private) BytesRefbinaryValuea binary value or null if this buffer holds numeric updates(package private) intdocUpTothe max document ID this update should be applied to(package private) booleanhasValuetrueif this update has a value(package private) longnumericValuea numeric value or 0 if this buffer holds binary updates(package private) java.lang.StringtermFieldThe update terms field.(package private) BytesReftermValueThe update terms value.
-
Constructor Summary
Constructors Modifier Constructor Description privateBufferedUpdate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
docUpTo
int docUpTo
the max document ID this update should be applied to
-
numericValue
long numericValue
a numeric value or 0 if this buffer holds binary updates
-
binaryValue
BytesRef binaryValue
a binary value or null if this buffer holds numeric updates
-
hasValue
boolean hasValue
trueif this update has a value
-
termField
java.lang.String termField
The update terms field. This will never be null.
-
termValue
BytesRef termValue
The update terms value. This will never be null.
-
-