public class org.apache.commons.collections.BoundedFifoBuffer extends java.util.AbstractCollection implements org.apache.commons.collections.Buffer, org.apache.commons.collections.BoundedCollection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.BoundedFifoBuffer
  super_class: java.util.AbstractCollection
{
  private final java.lang.Object[] m_elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int m_start;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int m_end;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean m_full;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  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.collections.BoundedFifoBuffer this
         0: .line 69
            aload 0 /* this */
            bipush 32
            invokespecial org.apache.commons.collections.BoundedFifoBuffer.<init>:(I)V
         1: .line 70
            return
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;

  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.collections.BoundedFifoBuffer this
        start local 1 // int size
         0: .line 79
            aload 0 /* this */
            invokespecial java.util.AbstractCollection.<init>:()V
         1: .line 59
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
         2: .line 60
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
         3: .line 61
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
         4: .line 80
            iload 1 /* size */
            ifgt 6
         5: .line 81
            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 83
      StackMap locals: org.apache.commons.collections.BoundedFifoBuffer int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            anewarray java.lang.Object
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
         7: .line 84
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            arraylength
            putfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
         8: .line 85
            return
        end local 1 // int size
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            0    9     1  size  I
    MethodParameters:
      Name  Flags
      size  

  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.BoundedFifoBuffer this
        start local 1 // java.util.Collection coll
         0: .line 96
            aload 0 /* this */
            aload 1 /* coll */
            invokeinterface java.util.Collection.size:()I
            invokespecial org.apache.commons.collections.BoundedFifoBuffer.<init>:(I)V
         1: .line 97
            aload 0 /* this */
            aload 1 /* coll */
            invokevirtual org.apache.commons.collections.BoundedFifoBuffer.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 98
            return
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            0    3     1  coll  Ljava/util/Collection;
    MethodParameters:
      Name  Flags
      coll  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
         0: .line 106
            iconst_0
            istore 1 /* size */
        start local 1 // int size
         1: .line 108
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            if_icmpge 4
         2: .line 109
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            isub
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            iadd
            istore 1 /* size */
         3: .line 110
            goto 10
      StackMap locals: int
      StackMap stack:
         4: aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            if_icmpne 9
         5: .line 111
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
            ifeq 6
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 1 /* size */
         8: .line 112
            goto 10
         9: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            isub
            istore 1 /* size */
        10: .line 116
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            ireturn
        end local 1 // int size
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            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.collections.BoundedFifoBuffer this
         0: .line 125
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.BoundedFifoBuffer.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;

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

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

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
         0: .line 150
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
         1: .line 151
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
         2: .line 152
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
         3: .line 153
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 154
            return
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
        start local 1 // java.lang.Object element
         0: .line 165
            aload 1 /* element */
            ifnonnull 2
         1: .line 166
            new java.lang.NullPointerException
            dup
            ldc "Attempted to add null object to buffer"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
            ifeq 4
         3: .line 170
            new org.apache.commons.collections.BufferOverflowException
            dup
            new java.lang.StringBuilder
            dup
            ldc "The buffer cannot hold more than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " objects."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.apache.commons.collections.BufferOverflowException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 1 /* element */
            aastore
         5: .line 175
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            if_icmplt 7
         6: .line 176
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
         7: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_end:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            if_icmpne 9
         8: .line 180
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
         9: .line 183
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            0   10     1  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      element  

  public java.lang.Object get();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
         0: .line 193
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.BoundedFifoBuffer.isEmpty:()Z
            ifeq 2
         1: .line 194
            new org.apache.commons.collections.BufferUnderflowException
            dup
            ldc "The buffer is already empty"
            invokespecial org.apache.commons.collections.BufferUnderflowException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            aaload
            areturn
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;

  public java.lang.Object remove();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
         0: .line 207
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.BoundedFifoBuffer.isEmpty:()Z
            ifeq 2
         1: .line 208
            new org.apache.commons.collections.BufferUnderflowException
            dup
            ldc "The buffer is already empty"
            invokespecial org.apache.commons.collections.BufferUnderflowException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            aaload
            astore 1 /* element */
        start local 1 // java.lang.Object element
         3: .line 213
            aload 1 /* element */
            ifnull 8
         4: .line 214
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_elements:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            aconst_null
            aastore
         5: .line 216
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            if_icmplt 7
         6: .line 217
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_start:I
         7: .line 220
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.BoundedFifoBuffer.m_full:Z
         8: .line 223
      StackMap locals:
      StackMap stack:
            aload 1 /* element */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            3    9     1  element  Ljava/lang/Object;

  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.collections.BoundedFifoBuffer this
        start local 1 // int index
         0: .line 233
            iinc 1 /* index */ 1
         1: .line 234
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            if_icmplt 3
         2: .line 235
            iconst_0
            istore 1 /* index */
         3: .line 237
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            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.collections.BoundedFifoBuffer this
        start local 1 // int index
         0: .line 247
            iinc 1 /* index */ -1
         1: .line 248
            iload 1 /* index */
            ifge 3
         2: .line 249
            aload 0 /* this */
            getfield org.apache.commons.collections.BoundedFifoBuffer.maxElements:I
            iconst_1
            isub
            istore 1 /* index */
         3: .line 251
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            ireturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections/BoundedFifoBuffer;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.BoundedFifoBuffer this
         0: .line 260
            new org.apache.commons.collections.BoundedFifoBuffer$1
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.BoundedFifoBuffer$1.<init>:(Lorg/apache/commons/collections/BoundedFifoBuffer;)V
            areturn
        end local 0 // org.apache.commons.collections.BoundedFifoBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/BoundedFifoBuffer;
}
SourceFile: "BoundedFifoBuffer.java"
NestMembers:
  org.apache.commons.collections.BoundedFifoBuffer$1
InnerClasses:
  org.apache.commons.collections.BoundedFifoBuffer$1