public class org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl implements org.eclipse.collections.api.factory.stack.ImmutableStackFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl
  super_class: java.lang.Object
{
  public static final org.eclipse.collections.api.factory.stack.ImmutableStackFactory INSTANCE;
    descriptor: Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 18
            new org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl
            dup
            invokespecial org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.<init>:()V
            putstatic org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.INSTANCE:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> empty();
    descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
         0: .line 23
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStack:()Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> of();
    descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
         0: .line 29
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.empty:()Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> with();
    descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
         0: .line 35
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.empty:()Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> of(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object element
         0: .line 41
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  element  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object element
         0: .line 47
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* element */
            aastore
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStackWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/immutable/ImmutableArrayStack;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  element  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> of(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object[] elements
         0: .line 53
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object[] elements
         0: .line 59
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStackWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/immutable/ImmutableArrayStack;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> ofAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 65
            aload 0 /* this */
            aload 1 /* items */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 71
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStack:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/immutable/ImmutableArrayStack;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> ofReversed(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object[] elements
         0: .line 77
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.withReversed:([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> withReversed(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Object[] elements
         0: .line 83
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStackFromTopToBottom:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/immutable/ImmutableArrayStack;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> ofAllReversed(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 89
            aload 0 /* this */
            aload 1 /* items */
            invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.stack.ImmutableStack<T> withAllReversed(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 95
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.stack.immutable.ImmutableArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/immutable/ImmutableArrayStack;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.stack.immutable.ImmutableStackFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/immutable/ImmutableStackFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
    MethodParameters:
       Name  Flags
      items  
}
SourceFile: "ImmutableStackFactoryImpl.java"