Package org.apache.lucene.index
Class DocumentsWriterDeleteQueue.DeleteSlice
- java.lang.Object
-
- org.apache.lucene.index.DocumentsWriterDeleteQueue.DeleteSlice
-
- Enclosing class:
- DocumentsWriterDeleteQueue
static class DocumentsWriterDeleteQueue.DeleteSlice extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) DocumentsWriterDeleteQueue.Node<?>
sliceHead
(package private) DocumentsWriterDeleteQueue.Node<?>
sliceTail
-
Constructor Summary
Constructors Constructor Description DeleteSlice(DocumentsWriterDeleteQueue.Node<?> currentTail)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
apply(BufferedUpdates del, int docIDUpto)
(package private) boolean
isEmpty()
(package private) boolean
isTail(DocumentsWriterDeleteQueue.Node<?> node)
Returnstrue
iff the given node is identical to the slices tail, otherwisefalse
.(package private) boolean
isTailItem(java.lang.Object object)
Returnstrue
iff the given item is identical to the item hold by the slices tail, otherwisefalse
.(package private) void
reset()
-
-
-
Field Detail
-
sliceHead
DocumentsWriterDeleteQueue.Node<?> sliceHead
-
sliceTail
DocumentsWriterDeleteQueue.Node<?> sliceTail
-
-
Constructor Detail
-
DeleteSlice
DeleteSlice(DocumentsWriterDeleteQueue.Node<?> currentTail)
-
-
Method Detail
-
apply
void apply(BufferedUpdates del, int docIDUpto)
-
reset
void reset()
-
isTail
boolean isTail(DocumentsWriterDeleteQueue.Node<?> node)
Returnstrue
iff the given node is identical to the slices tail, otherwisefalse
.
-
isTailItem
boolean isTailItem(java.lang.Object object)
Returnstrue
iff the given item is identical to the item hold by the slices tail, otherwisefalse
.
-
isEmpty
boolean isEmpty()
-
-