public class org.apache.commons.collections.list.NodeCachingLinkedList extends org.apache.commons.collections.list.AbstractLinkedList implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.list.NodeCachingLinkedList
  super_class: org.apache.commons.collections.list.AbstractLinkedList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6897789178562232073

  protected static final int DEFAULT_MAXIMUM_CACHE_SIZE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  protected transient org.apache.commons.collections.list.AbstractLinkedList$Node firstCachedNode;
    descriptor: Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int cacheSize;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected int maximumCacheSize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 79
            aload 0 /* this */
            bipush 20
            invokespecial org.apache.commons.collections.list.NodeCachingLinkedList.<init>:(I)V
         1: .line 80
            return
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;

  public void <init>(java.util.Collection);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // java.util.Collection coll
         0: .line 88
            aload 0 /* this */
            aload 1 /* coll */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.<init>:(Ljava/util/Collection;)V
         1: .line 89
            aload 0 /* this */
            bipush 20
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
         2: .line 90
            return
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    3     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // int maximumCacheSize
         0: .line 98
            aload 0 /* this */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.<init>:()V
         1: .line 99
            aload 0 /* this */
            iload 1 /* maximumCacheSize */
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
         2: .line 100
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.init:()V
         3: .line 101
            return
        end local 1 // int maximumCacheSize
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    4     1  maximumCacheSize  I
    MethodParameters:
                  Name  Flags
      maximumCacheSize  

  protected int getMaximumCacheSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 110
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
            ireturn
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;

  protected void setMaximumCacheSize(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // int maximumCacheSize
         0: .line 119
            aload 0 /* this */
            iload 1 /* maximumCacheSize */
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
         1: .line 120
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.shrinkCacheToMaximumSize:()V
         2: .line 121
            return
        end local 1 // int maximumCacheSize
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    3     1  maximumCacheSize  I
    MethodParameters:
                  Name  Flags
      maximumCacheSize  

  protected void shrinkCacheToMaximumSize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 128
            goto 2
         1: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.getNodeFromCache:()Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            pop
         2: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
            if_icmpgt 1
         3: .line 131
            return
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;

  protected org.apache.commons.collections.list.AbstractLinkedList$Node getNodeFromCache();
    descriptor: ()Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 141
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            ifne 2
         1: .line 142
            aconst_null
            areturn
         2: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.firstCachedNode:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            astore 1 /* cachedNode */
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node cachedNode
         3: .line 145
            aload 0 /* this */
            aload 1 /* cachedNode */
            getfield org.apache.commons.collections.list.AbstractLinkedList$Node.next:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.firstCachedNode:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
         4: .line 146
            aload 1 /* cachedNode */
            aconst_null
            putfield org.apache.commons.collections.list.AbstractLinkedList$Node.next:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
         5: .line 148
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
         6: .line 149
            aload 1 /* cachedNode */
            areturn
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node cachedNode
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            3    7     1  cachedNode  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;

  protected boolean isCacheFull();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 158
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
            if_icmplt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;

  protected void addNodeToCache(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 168
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.isCacheFull:()Z
            ifeq 2
         1: .line 170
            return
         2: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.firstCachedNode:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            astore 2 /* nextCachedNode */
        start local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node nextCachedNode
         3: .line 174
            aload 1 /* node */
            aconst_null
            putfield org.apache.commons.collections.list.AbstractLinkedList$Node.previous:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
         4: .line 175
            aload 1 /* node */
            aload 2 /* nextCachedNode */
            putfield org.apache.commons.collections.list.AbstractLinkedList$Node.next:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
         5: .line 176
            aload 1 /* node */
            aconst_null
            invokevirtual org.apache.commons.collections.list.AbstractLinkedList$Node.setValue:(Ljava/lang/Object;)V
         6: .line 177
            aload 0 /* this */
            aload 1 /* node */
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.firstCachedNode:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
         7: .line 178
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
         8: .line 179
            return
        end local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node nextCachedNode
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    9     1            node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            3    9     2  nextCachedNode  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    MethodParameters:
      Name  Flags
      node  

  protected org.apache.commons.collections.list.AbstractLinkedList$Node createNode(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // java.lang.Object value
         0: .line 190
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.getNodeFromCache:()Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            astore 2 /* cachedNode */
        start local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node cachedNode
         1: .line 191
            aload 2 /* cachedNode */
            ifnonnull 3
         2: .line 192
            aload 0 /* this */
            aload 1 /* value */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.createNode:(Ljava/lang/Object;)Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            areturn
         3: .line 194
      StackMap locals: org.apache.commons.collections.list.AbstractLinkedList$Node
      StackMap stack:
            aload 2 /* cachedNode */
            aload 1 /* value */
            invokevirtual org.apache.commons.collections.list.AbstractLinkedList$Node.setValue:(Ljava/lang/Object;)V
         4: .line 195
            aload 2 /* cachedNode */
            areturn
        end local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node cachedNode
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    5     1       value  Ljava/lang/Object;
            1    5     2  cachedNode  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    MethodParameters:
       Name  Flags
      value  

  protected void removeNode(org.apache.commons.collections.list.AbstractLinkedList$Node);
    descriptor: (Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         0: .line 206
            aload 0 /* this */
            aload 1 /* node */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.removeNode:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         1: .line 207
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.addNodeToCache:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
         2: .line 208
            return
        end local 1 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    3     1  node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
    MethodParameters:
      Name  Flags
      node  

  protected void removeAllNodes();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
         0: .line 220
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.size:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.maximumCacheSize:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.cacheSize:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 1 /* numberOfNodesToCache */
        start local 1 // int numberOfNodesToCache
         1: .line 221
            aload 0 /* this */
            getfield org.apache.commons.collections.list.NodeCachingLinkedList.header:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            getfield org.apache.commons.collections.list.AbstractLinkedList$Node.next:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            astore 2 /* node */
        start local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node node
         2: .line 222
            iconst_0
            istore 3 /* currentIndex */
        start local 3 // int currentIndex
         3: goto 8
         4: .line 223
      StackMap locals: int org.apache.commons.collections.list.AbstractLinkedList$Node int
      StackMap stack:
            aload 2 /* node */
            astore 4 /* oldNode */
        start local 4 // org.apache.commons.collections.list.AbstractLinkedList$Node oldNode
         5: .line 224
            aload 2 /* node */
            getfield org.apache.commons.collections.list.AbstractLinkedList$Node.next:Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            astore 2 /* node */
         6: .line 225
            aload 0 /* this */
            aload 4 /* oldNode */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.addNodeToCache:(Lorg/apache/commons/collections/list/AbstractLinkedList$Node;)V
        end local 4 // org.apache.commons.collections.list.AbstractLinkedList$Node oldNode
         7: .line 222
            iinc 3 /* currentIndex */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* currentIndex */
            iload 1 /* numberOfNodesToCache */
            if_icmplt 4
        end local 3 // int currentIndex
         9: .line 227
            aload 0 /* this */
            invokespecial org.apache.commons.collections.list.AbstractLinkedList.removeAllNodes:()V
        10: .line 228
            return
        end local 2 // org.apache.commons.collections.list.AbstractLinkedList$Node node
        end local 1 // int numberOfNodesToCache
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   11     0                  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            1   11     1  numberOfNodesToCache  I
            2   11     2                  node  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;
            3    9     3          currentIndex  I
            5    7     4               oldNode  Lorg/apache/commons/collections/list/AbstractLinkedList$Node;

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // java.io.ObjectOutputStream out
         0: .line 235
            aload 1 /* out */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 236
            aload 0 /* this */
            aload 1 /* out */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.doWriteObject:(Ljava/io/ObjectOutputStream;)V
         2: .line 237
            return
        end local 1 // java.io.ObjectOutputStream out
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    3     1   out  Ljava/io/ObjectOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
        start local 1 // java.io.ObjectInputStream in
         0: .line 243
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 244
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual org.apache.commons.collections.list.NodeCachingLinkedList.doReadObject:(Ljava/io/ObjectInputStream;)V
         2: .line 245
            return
        end local 1 // java.io.ObjectInputStream in
        end local 0 // org.apache.commons.collections.list.NodeCachingLinkedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/NodeCachingLinkedList;
            0    3     1    in  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    
}
SourceFile: "NodeCachingLinkedList.java"
InnerClasses:
  protected Node = org.apache.commons.collections.list.AbstractLinkedList$Node of org.apache.commons.collections.list.AbstractLinkedList