public final class org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> extends org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter<T> implements java.io.Serializable, org.eclipse.collections.api.list.FixedSizeList<T>
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: org.eclipse.collections.impl.list.fixed.ArrayAdapter
super_class: org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 1
private static final java.lang.Object[] EMPTY_ARRAY;
descriptor: [Ljava/lang/Object;
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: iconst_0
anewarray java.lang.Object
putstatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.EMPTY_ARRAY:[Ljava/lang/Object;
return
LocalVariableTable:
Start End Slot Name Signature
private void <init>();
descriptor: ([Ljava/lang/Object;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokespecial org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.<init>:([Ljava/lang/Object;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 2 1 newElements [Ljava/lang/Object;
Signature: ([TT;)V
MethodParameters:
Name Flags
newElements
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> adapt(E[]);
descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
aload 0
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 array [Ljava/lang/Object;
Signature: <E:Ljava/lang/Object;>([TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
array
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArray();
descriptor: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: getstatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.EMPTY_ARRAY:[Ljava/lang/Object;
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArrayWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
Signature: <E:Ljava/lang/Object;>()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArray(java.lang.Iterable<? extends E>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
aload 0
invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;)[Ljava/lang/Object;
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 source Ljava/lang/Iterable<+TE;>;
Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<+TE;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
source
public java.util.Spliterator<T> spliterator();
descriptor: ()Ljava/util/Spliterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
bipush 16
invokestatic java.util.Spliterators.spliterator:([Ljava/lang/Object;I)Ljava/util/Spliterator;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
Signature: ()Ljava/util/Spliterator<TT;>;
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWithItem(java.lang.Iterable<? extends E>, E);
descriptor: (Ljava/lang/Iterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 0
invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
istore 2
start local 2 1: iload 2
iconst_1
iadd
anewarray java.lang.Object
astore 3
start local 3 2: aload 0
aload 3
invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;[Ljava/lang/Object;)[Ljava/lang/Object;
pop
3: aload 3
iload 2
aload 1
aastore
4: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
aload 3
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 iterable Ljava/lang/Iterable<+TE;>;
0 5 1 itemToAdd TE;
1 5 2 oldSize I
2 5 3 array [Ljava/lang/Object;
Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<+TE;>;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
iterable
itemToAdd
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
iconst_1
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
Signature: <E:Ljava/lang/Object;>(TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=2, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
iconst_2
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
iconst_3
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
dup
iconst_2
aload 2
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
0 1 2 three TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
three
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
iconst_4
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
dup
iconst_2
aload 2
aastore
dup
iconst_3
aload 3
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
0 1 2 three TE;
0 1 3 four TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
three
four
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
iconst_5
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
dup
iconst_2
aload 2
aastore
dup
iconst_3
aload 3
aastore
dup
iconst_4
aload 4
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
0 1 2 three TE;
0 1 3 four TE;
0 1 4 five TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
three
four
five
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=6, args_size=6
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
bipush 6
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
dup
iconst_2
aload 2
aastore
dup
iconst_3
aload 3
aastore
dup
iconst_4
aload 4
aastore
dup
iconst_5
aload 5
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
0 1 2 three TE;
0 1 3 four TE;
0 1 4 five TE;
0 1 5 six TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
three
four
five
six
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E, E, E, E, E, E, E);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=7, args_size=7
start local 0 start local 1 start local 2 start local 3 start local 4 start local 5 start local 6 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
bipush 7
anewarray java.lang.Object
dup
iconst_0
aload 0
aastore
dup
iconst_1
aload 1
aastore
dup
iconst_2
aload 2
aastore
dup
iconst_3
aload 3
aastore
dup
iconst_4
aload 4
aastore
dup
iconst_5
aload 5
aastore
dup
bipush 6
aload 6
aastore
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one TE;
0 1 1 two TE;
0 1 2 three TE;
0 1 3 four TE;
0 1 4 five TE;
0 1 5 six TE;
0 1 6 seven TE;
Signature: <E:Ljava/lang/Object;>(TE;TE;TE;TE;TE;TE;TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
one
two
three
four
five
six
seven
public static <E> org.eclipse.collections.impl.list.fixed.ArrayAdapter<E> newArrayWith(E[]);
descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
aload 0
invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
checkcast java.lang.Object[]
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 elements [Ljava/lang/Object;
Signature: <E:Ljava/lang/Object;>([TE;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TE;>;
MethodParameters:
Name Flags
elements
public T set(int, );
descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
iload 1
aaload
astore 3
start local 3 1: aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
iload 1
aload 2
aastore
2: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 3 1 index I
0 3 2 element TT;
1 3 3 oldValue TT;
Signature: (ITT;)TT;
MethodParameters:
Name Flags
index
element
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> with(T);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArrayWithItem:(Ljava/lang/Iterable;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 1 1 value TT;
Signature: (TT;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
MethodParameters:
Name Flags
value
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> without(T);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.contains:(Ljava/lang/Object;)Z
ifeq 2
1: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
aload 1
invokeinterface org.eclipse.collections.api.list.MutableList.without:(Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
2: StackMap locals:
StackMap stack:
aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 3 1 element TT;
Signature: (TT;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
MethodParameters:
Name Flags
element
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> withAll(java.lang.Iterable<? extends T>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
ifeq 2
1: aload 0
areturn
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
aload 1
invokeinterface org.eclipse.collections.api.list.MutableList.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 3 1 elements Ljava/lang/Iterable<+TT;>;
Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
MethodParameters:
Name Flags
elements
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> withoutAll(java.lang.Iterable<? extends T>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
ifeq 2
1: aload 0
areturn
2: StackMap locals:
StackMap stack:
aload 1
invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
aload 0
invokestatic org.eclipse.collections.impl.utility.Iterate.anySatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
ifeq 4
3: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toList:()Lorg/eclipse/collections/api/list/MutableList;
aload 1
invokeinterface org.eclipse.collections.api.list.MutableList.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
invokestatic org.eclipse.collections.impl.list.fixed.ArrayAdapter.newArray:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
4: StackMap locals:
StackMap stack:
aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 5 1 elements Ljava/lang/Iterable<+TT;>;
Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
MethodParameters:
Name Flags
elements
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> clone();
descriptor: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.list.fixed.ArrayAdapter
dup
aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
checkcast java.lang.Object[]
invokespecial org.eclipse.collections.impl.list.fixed.ArrayAdapter.<init>:([Ljava/lang/Object;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
Signature: ()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
public org.eclipse.collections.impl.list.fixed.ArrayAdapter<T> sortThis(java.util.Comparator<? super T>);
descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokespecial org.eclipse.collections.impl.list.fixed.AbstractArrayAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
checkcast org.eclipse.collections.impl.list.fixed.ArrayAdapter
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 1 1 comparator Ljava/util/Comparator<-TT;>;
Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
MethodParameters:
Name Flags
comparator
public org.eclipse.collections.api.list.FixedSizeList<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
MethodParameters:
Name Flags
procedure
public org.eclipse.collections.api.list.FixedSizeList<T> toReversed();
descriptor: ()Lorg/eclipse/collections/api/list/FixedSizeList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=2, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
astore 1
start local 1 1: aload 1
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.reverseThis:()Lorg/eclipse/collections/api/list/MutableList;
pop
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
1 3 1 result Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
Signature: ()Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
private void writeObject(java.io.ObjectOutputStream);
descriptor: (Ljava/io/ObjectOutputStream;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
astore 2
start local 2 1: aload 2
arraylength
istore 3
start local 3 2: aload 1
iload 3
invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
3: iconst_0
istore 4
start local 4 4: goto 7
5: StackMap locals: java.lang.Object[] int int
StackMap stack:
aload 1
aload 2
iload 4
aaload
invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
6: iinc 4 1
StackMap locals:
StackMap stack:
7: iload 4
iload 3
if_icmplt 5
end local 4 8: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 9 1 objectOutputStream Ljava/io/ObjectOutputStream;
1 9 2 localItems [Ljava/lang/Object;
2 9 3 size I
4 8 4 i I
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
objectOutputStream
private void readObject(java.io.ObjectInputStream);
descriptor: (Ljava/io/ObjectInputStream;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=5, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.io.ObjectInputStream.readInt:()I
istore 2
start local 2 1: aload 0
iload 2
anewarray java.lang.Object
putfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
2: aload 0
getfield org.eclipse.collections.impl.list.fixed.ArrayAdapter.items:[Ljava/lang/Object;
astore 3
start local 3 3: iconst_0
istore 4
start local 4 4: goto 7
5: StackMap locals: int java.lang.Object[] int
StackMap stack:
aload 3
iload 4
aload 1
invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
aastore
6: iinc 4 1
StackMap locals:
StackMap stack:
7: iload 4
iload 2
if_icmplt 5
end local 4 8: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter<TT;>;
0 9 1 objectInputStream Ljava/io/ObjectInputStream;
1 9 2 arrayLength I
3 9 3 localItems [Ljava/lang/Object;
4 8 4 i I
Exceptions:
throws java.io.IOException, java.lang.ClassNotFoundException
MethodParameters:
Name Flags
objectInputStream
public org.eclipse.collections.api.collection.MutableCollection withoutAll(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList withoutAll(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList clone();
descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public java.lang.Object clone();
descriptor: ()Ljava/lang/Object;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.clone:()Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
Exceptions:
throws java.lang.CloneNotSupportedException
public org.eclipse.collections.api.list.MutableList sortThis(java.util.Comparator);
descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.util.Comparator
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable toReversed();
descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable toReversed();
descriptor: ()Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList toReversed();
descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.toReversed:()Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection without(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList without(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.FixedSizeCollection tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/FixedSizeCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.ReversibleIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.ListIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/list/FixedSizeList;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection withAll(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList withAll(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.collection.MutableCollection with(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.list.MutableList with(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.list.fixed.ArrayAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/fixed/ArrayAdapter;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/fixed/AbstractArrayAdapter<TT;>;Ljava/io/Serializable;Lorg/eclipse/collections/api/list/FixedSizeList<TT;>;
SourceFile: "ArrayAdapter.java"