public class org.apache.commons.collections4.ArrayStack<E> extends java.util.ArrayList<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections4.ArrayStack
  super_class: java.util.ArrayList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2130079159931574599

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.ArrayStack this
         0: .line 57
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 58
            return
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;

  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.collections4.ArrayStack this
        start local 1 // int initialSize
         0: .line 68
            aload 0 /* this */
            iload 1 /* initialSize */
            invokespecial java.util.ArrayList.<init>:(I)V
         1: .line 69
            return
        end local 1 // int initialSize
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            0    2     1  initialSize  I
    MethodParameters:
             Name  Flags
      initialSize  final

  public boolean empty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.ArrayStack this
         0: .line 80
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.ArrayStack.isEmpty:()Z
            ireturn
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;

  public E peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.ArrayStack this
         0: .line 90
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.ArrayStack.size:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 91
            iload 1 /* n */
            ifgt 3
         2: .line 92
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 94
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* n */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections4.ArrayStack.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int n
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            1    4     1     n  I
    Exceptions:
      throws java.util.EmptyStackException
    Signature: ()TE;

  public E peek();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections4.ArrayStack this
        start local 1 // int n
         0: .line 107
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.ArrayStack.size:()I
            iload 1 /* n */
            isub
            iconst_1
            isub
            istore 2 /* m */
        start local 2 // int m
         1: .line 108
            iload 2 /* m */
            ifge 3
         2: .line 109
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 111
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* m */
            invokevirtual org.apache.commons.collections4.ArrayStack.get:(I)Ljava/lang/Object;
            areturn
        end local 2 // int m
        end local 1 // int n
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            0    4     1     n  I
            1    4     2     m  I
    Exceptions:
      throws java.util.EmptyStackException
    Signature: (I)TE;
    MethodParameters:
      Name  Flags
      n     final

  public E pop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.ArrayStack this
         0: .line 121
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.ArrayStack.size:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 122
            iload 1 /* n */
            ifgt 3
         2: .line 123
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         3: .line 125
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* n */
            iconst_1
            isub
            invokevirtual org.apache.commons.collections4.ArrayStack.remove:(I)Ljava/lang/Object;
            areturn
        end local 1 // int n
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            1    4     1     n  I
    Exceptions:
      throws java.util.EmptyStackException
    Signature: ()TE;

  public E push();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.ArrayStack this
        start local 1 // java.lang.Object item
         0: .line 136
            aload 0 /* this */
            aload 1 /* item */
            invokevirtual org.apache.commons.collections4.ArrayStack.add:(Ljava/lang/Object;)Z
            pop
         1: .line 137
            aload 1 /* item */
            areturn
        end local 1 // java.lang.Object item
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            0    2     1  item  TE;
    Signature: (TE;)TE;
    MethodParameters:
      Name  Flags
      item  final

  public int search(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections4.ArrayStack this
        start local 1 // java.lang.Object object
         0: .line 152
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.ArrayStack.size:()I
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         1: .line 153
            iconst_1
            istore 3 /* n */
        start local 3 // int n
         2: .line 154
            goto 9
         3: .line 155
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.apache.commons.collections4.ArrayStack.get:(I)Ljava/lang/Object;
            astore 4 /* current */
        start local 4 // java.lang.Object current
         4: .line 156
            aload 1 /* object */
            ifnonnull 5
            aload 4 /* current */
            ifnull 6
         5: .line 157
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* object */
            ifnull 7
            aload 1 /* object */
            aload 4 /* current */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 158
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            ireturn
         7: .line 160
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
         8: .line 161
            iinc 3 /* n */ 1
        end local 4 // java.lang.Object current
         9: .line 154
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ifge 3
        10: .line 163
            iconst_m1
            ireturn
        end local 3 // int n
        end local 2 // int i
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.ArrayStack this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/apache/commons/collections4/ArrayStack<TE;>;
            0   11     1   object  Ljava/lang/Object;
            1   11     2        i  I
            2   11     3        n  I
            4    9     4  current  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  final
}
Signature: <E:Ljava/lang/Object;>Ljava/util/ArrayList<TE;>;
SourceFile: "ArrayStack.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()