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

  private static final org.eclipse.collections.api.list.FixedSizeList<?> EMPTY_LIST;
    descriptor: Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/list/FixedSizeList<*>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 21
            new org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl
            dup
            invokespecial org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.<init>:()V
            putstatic org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.INSTANCE:Lorg/eclipse/collections/api/factory/list/FixedSizeListFactory;
         1: .line 23
            new org.eclipse.collections.impl.list.fixed.EmptyList
            dup
            invokespecial org.eclipse.collections.impl.list.fixed.EmptyList.<init>:()V
            putstatic org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.EMPTY_LIST:Lorg/eclipse/collections/api/list/FixedSizeList;
            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.list.fixed.FixedSizeListFactoryImpl this
         0: .line 19
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> empty();
    descriptor: ()Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
         0: .line 28
            getstatic org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.EMPTY_LIST:Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;

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

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

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

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
         0: .line 52
            new org.eclipse.collections.impl.list.fixed.SingletonList
            dup
            aload 1 /* one */
            invokespecial org.eclipse.collections.impl.list.fixed.SingletonList.<init>:(Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1   one  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
      Name  Flags
      one   

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

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
         0: .line 64
            new org.eclipse.collections.impl.list.fixed.DoubletonList
            dup
            aload 1 /* one */
            aload 2 /* two */
            invokespecial org.eclipse.collections.impl.list.fixed.DoubletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1   one  TT;
            0    1     2   two  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
      Name  Flags
      one   
      two   

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> of(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
         0: .line 70
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
         0: .line 76
            new org.eclipse.collections.impl.list.fixed.TripletonList
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokespecial org.eclipse.collections.impl.list.fixed.TripletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> of(T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
         0: .line 82
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
         0: .line 88
            new org.eclipse.collections.impl.list.fixed.QuadrupletonList
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            invokespecial org.eclipse.collections.impl.list.fixed.QuadrupletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> of(T, T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
        start local 5 // java.lang.Object five
         0: .line 94
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            aload 5 /* five */
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 5 // java.lang.Object five
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
            0    1     5   five  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T, T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
        start local 5 // java.lang.Object five
         0: .line 100
            new org.eclipse.collections.impl.list.fixed.QuintupletonList
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            aload 5 /* five */
            invokespecial org.eclipse.collections.impl.list.fixed.QuintupletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 5 // java.lang.Object five
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
            0    1     5   five  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> of(T, T, T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
        start local 5 // java.lang.Object five
        start local 6 // java.lang.Object six
         0: .line 106
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            aload 5 /* five */
            aload 6 /* six */
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 6 // java.lang.Object six
        end local 5 // java.lang.Object five
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
            0    1     5   five  TT;
            0    1     6    six  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   
      six    

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T, T, T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=7
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
        start local 5 // java.lang.Object five
        start local 6 // java.lang.Object six
         0: .line 112
            new org.eclipse.collections.impl.list.fixed.SextupletonList
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            aload 5 /* five */
            aload 6 /* six */
            invokespecial org.eclipse.collections.impl.list.fixed.SextupletonList.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 6 // java.lang.Object six
        end local 5 // java.lang.Object five
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
            0    1     5   five  TT;
            0    1     6    six  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;TT;TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   
      five   
      six    

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

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Object[] items
         0: .line 124
            aload 1 /* items */
            arraylength
            tableswitch { // 0 - 6
                    0: 1
                    1: 2
                    2: 3
                    3: 4
                    4: 5
                    5: 6
                    6: 7
              default: 8
          }
         1: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:()Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         2: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         3: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         4: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         5: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            aload 1 /* items */
            iconst_3
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         6: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            aload 1 /* items */
            iconst_3
            aaload
            aload 1 /* items */
            iconst_4
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         7: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            aload 1 /* items */
            iconst_3
            aaload
            aload 1 /* items */
            iconst_4
            aaload
            aload 1 /* items */
            iconst_5
            aaload
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
         8: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArrayWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
            areturn
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    9     1  items  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      items  

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

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 154
            aload 0 /* this */
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;)[Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.list.FixedSizeList<T> fromStream(java.util.stream.Stream<? extends T>);
    descriptor: (Ljava/util/stream/Stream;)Lorg/eclipse/collections/api/list/FixedSizeList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
        start local 1 // java.util.stream.Stream stream
         0: .line 160
            aload 0 /* this */
            aload 1 /* stream */
            invokeinterface java.util.stream.Stream.toArray:()[Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl.of:([Ljava/lang/Object;)Lorg/eclipse/collections/api/list/FixedSizeList;
            areturn
        end local 1 // java.util.stream.Stream stream
        end local 0 // org.eclipse.collections.impl.list.fixed.FixedSizeListFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/fixed/FixedSizeListFactoryImpl;
            0    1     1  stream  Ljava/util/stream/Stream<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/stream/Stream<+TT;>;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
    MethodParameters:
        Name  Flags
      stream  
}
SourceFile: "FixedSizeListFactoryImpl.java"