Class NodeCachingLinkedList<E>
java.lang.Object
org.apache.commons.collections4.list.AbstractLinkedList<E>
org.apache.commons.collections4.list.NodeCachingLinkedList<E>
- Type Parameters:
E- the type of the elements in the list.
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,List<E>
@Deprecated
public class NodeCachingLinkedList<E>
extends AbstractLinkedList<E>
implements Serializable
Deprecated.
A
List implementation that stores a cache of internal Node objects
in an effort to reduce wasteful object creation.
A linked list creates one Node for each item of data added. This can result in a lot of object creation and garbage collection. This implementation seeks to avoid that by maintaining a store of cached nodes.
This implementation is suitable for long-lived lists where both add and remove are used. Short-lived lists, or lists which only grow will have worse performance using this class.
Note that this implementation is not synchronized.
- Since:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.commons.collections4.list.AbstractLinkedList
AbstractLinkedList.LinkedListIterator<E>, AbstractLinkedList.LinkedSubList<E>, AbstractLinkedList.LinkedSubListIterator<E>, AbstractLinkedList.Node<E> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate intDeprecated.The size of the cache.private static final intDeprecated.The default value formaximumCacheSize.private AbstractLinkedList.Node<E> Deprecated.The first cached node, ornullif no nodes are cached.private intDeprecated.The maximum size of the cache.private static final longDeprecated.Serialization versionFields inherited from class org.apache.commons.collections4.list.AbstractLinkedList
header, modCount, size -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Constructor that creates.NodeCachingLinkedList(int maximumCacheSize) Deprecated.Constructor that species the maximum cache size.NodeCachingLinkedList(Collection<? extends E> coll) Deprecated.Constructor that copies the specified collection -
Method Summary
Modifier and TypeMethodDescriptionprotected voidDeprecated.Adds a node to the cache, if the cache isn't full.protected AbstractLinkedList.Node<E> createNode(E value) Deprecated.Creates a new node, either by reusing one from the cache or creating a new one.protected intDeprecated.Gets the maximum size of the cache.protected AbstractLinkedList.Node<E> Deprecated.Gets a node from the cache.protected booleanDeprecated.Checks whether the cache is full.private voidDeprecated.Deserializes the data held in this object to the stream specified.protected voidDeprecated.Removes all the nodes from the list, storing as many as required in the cache for reuse.protected voidremoveNode(AbstractLinkedList.Node<E> node) Deprecated.Removes the node from the list, storing it in the cache for reuse if the cache is not yet full.protected voidsetMaximumCacheSize(int maximumCacheSize) Deprecated.Sets the maximum size of the cache.protected voidDeprecated.Reduce the size of the cache to the maximum, if necessary.private voidDeprecated.Serializes this object to an ObjectOutputStream.Methods inherited from class org.apache.commons.collections4.list.AbstractLinkedList
add, add, addAll, addAll, addFirst, addLast, addNode, addNodeAfter, addNodeBefore, clear, contains, containsAll, createHeaderNode, createSubListIterator, createSubListListIterator, doReadObject, doWriteObject, equals, get, getFirst, getLast, getNode, hashCode, indexOf, init, isEmpty, isEqualValue, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, retainAll, set, size, subList, toArray, toArray, toString, updateNodeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, streamMethods inherited from interface java.util.List
replaceAll, sort, spliterator
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDDeprecated.Serialization version- See Also:
-
DEFAULT_MAXIMUM_CACHE_SIZE
private static final int DEFAULT_MAXIMUM_CACHE_SIZEDeprecated.The default value formaximumCacheSize.- See Also:
-
firstCachedNode
Deprecated.The first cached node, ornullif no nodes are cached. Cached nodes are stored in a singly-linked list withnextpointing to the next element. -
cacheSize
private transient int cacheSizeDeprecated.The size of the cache. -
maximumCacheSize
private int maximumCacheSizeDeprecated.The maximum size of the cache.
-
-
Constructor Details
-
NodeCachingLinkedList
public NodeCachingLinkedList()Deprecated.Constructor that creates. -
NodeCachingLinkedList
Deprecated.Constructor that copies the specified collection- Parameters:
coll- the collection to copy
-
NodeCachingLinkedList
public NodeCachingLinkedList(int maximumCacheSize) Deprecated.Constructor that species the maximum cache size.- Parameters:
maximumCacheSize- the maximum cache size
-
-
Method Details
-
addNodeToCache
Deprecated.Adds a node to the cache, if the cache isn't full. The node's contents are cleared, so they can be garbage collected.- Parameters:
node- the node to add to the cache
-
createNode
Deprecated.Creates a new node, either by reusing one from the cache or creating a new one.- Overrides:
createNodein classAbstractLinkedList<E>- Parameters:
value- value of the new node- Returns:
- the newly created node
-
getMaximumCacheSize
protected int getMaximumCacheSize()Deprecated.Gets the maximum size of the cache.- Returns:
- the maximum cache size
-
getNodeFromCache
Deprecated.Gets a node from the cache. If a node is returned, then the value ofcacheSizeis decreased accordingly. The node that is returned will havenullvalues for next, previous and element.- Returns:
- a node, or
nullif there are no nodes in the cache.
-
isCacheFull
protected boolean isCacheFull()Deprecated.Checks whether the cache is full.- Returns:
- true if the cache is full
-
readObject
Deprecated.Deserializes the data held in this object to the stream specified.- Parameters:
in- the input stream- Throws:
IOException- if an error occurs while reading from the streamClassNotFoundException- if an object read from the stream cannot be loaded
-
removeAllNodes
protected void removeAllNodes()Deprecated.Removes all the nodes from the list, storing as many as required in the cache for reuse.- Overrides:
removeAllNodesin classAbstractLinkedList<E>
-
removeNode
Deprecated.Removes the node from the list, storing it in the cache for reuse if the cache is not yet full.- Overrides:
removeNodein classAbstractLinkedList<E>- Parameters:
node- the node to remove
-
setMaximumCacheSize
protected void setMaximumCacheSize(int maximumCacheSize) Deprecated.Sets the maximum size of the cache.- Parameters:
maximumCacheSize- the new maximum cache size
-
shrinkCacheToMaximumSize
protected void shrinkCacheToMaximumSize()Deprecated.Reduce the size of the cache to the maximum, if necessary. -
writeObject
Deprecated.Serializes this object to an ObjectOutputStream.- Parameters:
out- the target ObjectOutputStream.- Throws:
IOException- thrown when an I/O errors occur writing to the target stream.
-
AbstractLinkedListis source incompatible with List methods added in Java 21