Package org.apache.lucene.util.packed
Class AbstractPagedMutable<T extends AbstractPagedMutable<T>>
- java.lang.Object
-
- org.apache.lucene.util.LongValues
-
- org.apache.lucene.util.packed.AbstractPagedMutable<T>
-
- All Implemented Interfaces:
Accountable
- Direct Known Subclasses:
PagedGrowableWriter
,PagedMutable
public abstract class AbstractPagedMutable<T extends AbstractPagedMutable<T>> extends LongValues implements Accountable
Base implementation forPagedMutable
andPagedGrowableWriter
.- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.util.LongValues
IDENTITY, ZEROES
-
Fields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected long
baseRamBytesUsed()
protected void
fillPages()
long
get(long index)
Get value atindex
.T
grow()
Similar toArrayUtil.grow(long[])
.T
grow(long minSize)
Similar toArrayUtil.grow(long[], int)
.protected abstract PackedInts.Mutable
newMutable(int valueCount, int bitsPerValue)
protected abstract T
newUnfilledCopy(long newSize)
long
ramBytesUsed()
Return the memory usage of this object in bytes.T
resize(long newSize)
Create a new copy of sizenewSize
based on the content of this buffer.void
set(long index, long value)
Set value atindex
.long
size()
The number of values.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
-
-
-
Method Detail
-
fillPages
protected final void fillPages()
-
newMutable
protected abstract PackedInts.Mutable newMutable(int valueCount, int bitsPerValue)
-
size
public final long size()
The number of values.
-
get
public final long get(long index)
Description copied from class:LongValues
Get value atindex
.- Specified by:
get
in classLongValues
-
set
public final void set(long index, long value)
Set value atindex
.
-
baseRamBytesUsed
protected long baseRamBytesUsed()
-
ramBytesUsed
public long ramBytesUsed()
Description copied from interface:Accountable
Return the memory usage of this object in bytes. Negative values are illegal.- Specified by:
ramBytesUsed
in interfaceAccountable
-
newUnfilledCopy
protected abstract T newUnfilledCopy(long newSize)
-
resize
public final T resize(long newSize)
Create a new copy of sizenewSize
based on the content of this buffer. This method is much more efficient than creating a new instance and copying values one by one.
-
grow
public final T grow(long minSize)
Similar toArrayUtil.grow(long[], int)
.
-
grow
public final T grow()
Similar toArrayUtil.grow(long[])
.
-
-