Class PrimitiveArrayBuilder<T>
- java.lang.Object
-
- com.fasterxml.jackson.databind.util.PrimitiveArrayBuilder<T>
-
- Direct Known Subclasses:
ArrayBuilders.BooleanBuilder,ArrayBuilders.ByteBuilder,ArrayBuilders.DoubleBuilder,ArrayBuilders.FloatBuilder,ArrayBuilders.IntBuilder,ArrayBuilders.LongBuilder,ArrayBuilders.ShortBuilder
public abstract class PrimitiveArrayBuilder<T> extends Object
Base class for specialized primitive array builders.
-
-
Field Summary
Fields Modifier and Type Field Description protected int_bufferedEntryCountNumber of total buffered entries in this buffer, counting all instances within linked list formed by following_bufferHead.protected com.fasterxml.jackson.databind.util.PrimitiveArrayBuilder.Node<T>_bufferHeadprotected com.fasterxml.jackson.databind.util.PrimitiveArrayBuilder.Node<T>_bufferTailprotected T_freeBuffer
-
Constructor Summary
Constructors Modifier Constructor Description protectedPrimitiveArrayBuilder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract T_constructArray(int len)protected void_reset()TappendCompletedChunk(T fullChunk, int fullChunkLength)intbufferedSize()TcompleteAndClearBuffer(T lastChunk, int lastChunkEntries)TresetAndStart()
-
-
-
Field Detail
-
_freeBuffer
protected T _freeBuffer
-
_bufferHead
protected com.fasterxml.jackson.databind.util.PrimitiveArrayBuilder.Node<T> _bufferHead
-
_bufferTail
protected com.fasterxml.jackson.databind.util.PrimitiveArrayBuilder.Node<T> _bufferTail
-
_bufferedEntryCount
protected int _bufferedEntryCount
Number of total buffered entries in this buffer, counting all instances within linked list formed by following_bufferHead.
-
-
Method Detail
-
bufferedSize
public int bufferedSize()
-
resetAndStart
public T resetAndStart()
-
appendCompletedChunk
public final T appendCompletedChunk(T fullChunk, int fullChunkLength)
- Returns:
- Length of the next chunk to allocate
-
_constructArray
protected abstract T _constructArray(int len)
-
_reset
protected void _reset()
-
-