public class org.apache.commons.collections4.queue.CircularFifoQueue<E> extends java.util.AbstractCollection<E> implements java.util.Queue<E>, org.apache.commons.collections4.BoundedCollection<E>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections4.queue.CircularFifoQueue
  super_class: java.util.AbstractCollection
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -8423413834657610406

  private transient E[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: [TE;

  private transient int start;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int end;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient boolean full;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private final int maxElements;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 83
            aload 0 /* this */
            bipush 32
            invokespecial org.apache.commons.collections4.queue.CircularFifoQueue.<init>:(I)V
         1: .line 84
            return
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // int size
         0: .line 93
            aload 0 /* this */
            invokespecial java.util.AbstractCollection.<init>:()V
         1: .line 62
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
         2: .line 71
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
         3: .line 74
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
         4: .line 94
            iload 1 /* size */
            ifgt 6
         5: .line 95
            new java.lang.IllegalArgumentException
            dup
            ldc "The size must be greater than 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 97
      StackMap locals: org.apache.commons.collections4.queue.CircularFifoQueue int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            anewarray java.lang.Object
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
         7: .line 98
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            arraylength
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
         8: .line 99
            return
        end local 1 // int size
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    9     1  size  I
    MethodParameters:
      Name  Flags
      size  final

  public void <init>(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // java.util.Collection coll
         0: .line 109
            aload 0 /* this */
            aload 1 /* coll */
            invokeinterface java.util.Collection.size:()I
            invokespecial org.apache.commons.collections4.queue.CircularFifoQueue.<init>:(I)V
         1: .line 110
            aload 0 /* this */
            aload 1 /* coll */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 111
            return
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    3     1  coll  Ljava/util/Collection<+TE;>;
    Signature: (Ljava/util/Collection<+TE;>;)V
    MethodParameters:
      Name  Flags
      coll  final

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // java.io.ObjectOutputStream out
         0: .line 121
            aload 1 /* out */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 122
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.size:()I
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 123
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.commons.collections4.queue.CircularFifoQueue java.io.ObjectOutputStream top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* e */
        start local 2 // java.lang.Object e
         4: .line 124
            aload 1 /* out */
            aload 2 /* e */
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object e
         5: .line 123
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 126
            return
        end local 1 // java.io.ObjectOutputStream out
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    7     1   out  Ljava/io/ObjectOutputStream;
            4    5     2     e  TE;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   final

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // java.io.ObjectInputStream in
         0: .line 137
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 138
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            anewarray java.lang.Object
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
         2: .line 139
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         3: .line 140
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 141
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            iload 3 /* i */
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            aastore
         6: .line 140
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 5
        end local 3 // int i
         8: .line 143
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
         9: .line 144
            aload 0 /* this */
            iload 2 /* size */
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            if_icmpne 10
            iconst_1
            goto 11
      StackMap locals: org.apache.commons.collections4.queue.CircularFifoQueue java.io.ObjectInputStream int
      StackMap stack: org.apache.commons.collections4.queue.CircularFifoQueue
        10: iconst_0
      StackMap locals: org.apache.commons.collections4.queue.CircularFifoQueue java.io.ObjectInputStream int
      StackMap stack: org.apache.commons.collections4.queue.CircularFifoQueue int
        11: putfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
        12: .line 145
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
            ifeq 15
        13: .line 146
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
        14: .line 147
            goto 16
        15: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
        16: .line 150
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInputStream in
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0   17     1    in  Ljava/io/ObjectInputStream;
            3   17     2  size  I
            4    8     3     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    final

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 160
            iconst_0
            istore 1 /* size */
        start local 1 // int size
         1: .line 162
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            if_icmpge 4
         2: .line 163
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            isub
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            iadd
            istore 1 /* size */
         3: .line 164
            goto 10
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            if_icmpne 9
         5: .line 165
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
            ifeq 6
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 1 /* size */
         8: .line 166
            goto 10
         9: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            isub
            istore 1 /* size */
        10: .line 170
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            ireturn
        end local 1 // int size
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            1   11     1  size  I

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 180
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public boolean isFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 193
            iconst_0
            ireturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public boolean isAtFullCapacity();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 204
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.size:()I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public int maxSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 214
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            ireturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 222
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
         1: .line 223
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
         2: .line 224
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
         3: .line 225
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 226
            return
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // java.lang.Object element
         0: .line 238
            aload 1 /* element */
            ifnonnull 2
         1: .line 239
            new java.lang.NullPointerException
            dup
            ldc "Attempted to add null object to queue"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.isAtFullCapacity:()Z
            ifeq 4
         3: .line 243
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.remove:()Ljava/lang/Object;
            pop
         4: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 1 /* element */
            aastore
         5: .line 248
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            if_icmplt 7
         6: .line 249
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
         7: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.end:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            if_icmpne 9
         8: .line 253
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
         9: .line 256
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0   10     1  element  TE;
    Signature: (TE;)Z
    MethodParameters:
         Name  Flags
      element  final

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // int index
         0: .line 267
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.size:()I
            istore 2 /* sz */
        start local 2 // int sz
         1: .line 268
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            iload 2 /* sz */
            if_icmplt 7
         2: .line 269
      StackMap locals: int
      StackMap stack:
            new java.util.NoSuchElementException
            dup
         3: .line 270
            ldc "The specified index (%1$d) is outside the available range [0, %2$d)"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
         4: .line 271
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 2 /* sz */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         5: .line 270
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         6: .line 269
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            irem
            istore 3 /* idx */
        start local 3 // int idx
         8: .line 275
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            iload 3 /* idx */
            aaload
            areturn
        end local 3 // int idx
        end local 2 // int sz
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    9     1  index  I
            1    9     2     sz  I
            8    9     3    idx  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  final

  public boolean offer();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // java.lang.Object element
         0: .line 290
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    1     1  element  TE;
    Signature: (TE;)Z
    MethodParameters:
         Name  Flags
      element  final

  public E poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 295
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.isEmpty:()Z
            ifeq 2
         1: .line 296
            aconst_null
            areturn
         2: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.remove:()Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
    Signature: ()TE;

  public E element();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 303
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.isEmpty:()Z
            ifeq 2
         1: .line 304
            new java.util.NoSuchElementException
            dup
            ldc "queue is empty"
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.peek:()Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
    Signature: ()TE;

  public E peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 311
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.isEmpty:()Z
            ifeq 2
         1: .line 312
            aconst_null
            areturn
         2: .line 314
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            aaload
            areturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
    Signature: ()TE;

  public E remove();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 319
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.queue.CircularFifoQueue.isEmpty:()Z
            ifeq 2
         1: .line 320
            new java.util.NoSuchElementException
            dup
            ldc "queue is empty"
            invokespecial java.util.NoSuchElementException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            aaload
            astore 1 /* element */
        start local 1 // java.lang.Object element
         3: .line 324
            aload 1 /* element */
            ifnull 8
         4: .line 325
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            aconst_null
            aastore
         5: .line 327
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            if_icmplt 7
         6: .line 328
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.start:I
         7: .line 330
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections4.queue.CircularFifoQueue.full:Z
         8: .line 332
      StackMap locals:
      StackMap stack:
            aload 1 /* element */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            3    9     1  element  TE;
    Signature: ()TE;

  private int increment(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // int index
         0: .line 343
            iinc 1 /* index */ 1
         1: .line 344
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            if_icmplt 3
         2: .line 345
            iconst_0
            istore 1 /* index */
         3: .line 347
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private int decrement(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
        start local 1 // int index
         0: .line 357
            iinc 1 /* index */ -1
         1: .line 358
            iload 1 /* index */
            ifge 3
         2: .line 359
            aload 0 /* this */
            getfield org.apache.commons.collections4.queue.CircularFifoQueue.maxElements:I
            iconst_1
            isub
            istore 1 /* index */
         3: .line 361
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
         0: .line 371
            new org.apache.commons.collections4.queue.CircularFifoQueue$1
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections4.queue.CircularFifoQueue$1.<init>:(Lorg/apache/commons/collections4/queue/CircularFifoQueue;)V
            areturn
        end local 0 // org.apache.commons.collections4.queue.CircularFifoQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/queue/CircularFifoQueue<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;
}
Signature: <E:Ljava/lang/Object;>Ljava/util/AbstractCollection<TE;>;Ljava/util/Queue<TE;>;Lorg/apache/commons/collections4/BoundedCollection<TE;>;Ljava/io/Serializable;
SourceFile: "CircularFifoQueue.java"
NestMembers:
  org.apache.commons.collections4.queue.CircularFifoQueue$1
InnerClasses:
  org.apache.commons.collections4.queue.CircularFifoQueue$1