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

  private final java.util.List<E> setOrder;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TE;>;

  public static <E> org.apache.commons.collections4.set.ListOrderedSet<E> listOrderedSet(java.util.Set<E>, java.util.List<E>);
    descriptor: (Ljava/util/Set;Ljava/util/List;)Lorg/apache/commons/collections4/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.Set set
        start local 1 // java.util.List list
         0: .line 78
            aload 0 /* set */
            ifnonnull 2
         1: .line 79
            new java.lang.NullPointerException
            dup
            ldc "Set must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 1 /* list */
            ifnonnull 4
         3: .line 82
            new java.lang.NullPointerException
            dup
            ldc "List must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* set */
            invokeinterface java.util.Set.size:()I
            ifgt 5
            aload 1 /* list */
            invokeinterface java.util.List.size:()I
            ifle 6
         5: .line 85
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Set and List must be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 87
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections4.set.ListOrderedSet
            dup
            aload 0 /* set */
            aload 1 /* list */
            invokespecial org.apache.commons.collections4.set.ListOrderedSet.<init>:(Ljava/util/Set;Ljava/util/List;)V
            areturn
        end local 1 // java.util.List list
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   set  Ljava/util/Set<TE;>;
            0    7     1  list  Ljava/util/List<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<TE;>;Ljava/util/List<TE;>;)Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
    MethodParameters:
      Name  Flags
      set   final
      list  final

  public static <E> org.apache.commons.collections4.set.ListOrderedSet<E> listOrderedSet(java.util.Set<E>);
    descriptor: (Ljava/util/Set;)Lorg/apache/commons/collections4/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 102
            new org.apache.commons.collections4.set.ListOrderedSet
            dup
            aload 0 /* set */
            invokespecial org.apache.commons.collections4.set.ListOrderedSet.<init>:(Ljava/util/Set;)V
            areturn
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/Set<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<TE;>;)Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> org.apache.commons.collections4.set.ListOrderedSet<E> listOrderedSet(java.util.List<E>);
    descriptor: (Ljava/util/List;)Lorg/apache/commons/collections4/set/ListOrderedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.List list
         0: .line 120
            aload 0 /* list */
            ifnonnull 2
         1: .line 121
            new java.lang.NullPointerException
            dup
            ldc "List must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* list */
            invokestatic org.apache.commons.collections4.functors.UniquePredicate.uniquePredicate:()Lorg/apache/commons/collections4/Predicate;
            invokestatic org.apache.commons.collections4.CollectionUtils.filter:(Ljava/lang/Iterable;Lorg/apache/commons/collections4/Predicate;)Z
            pop
         3: .line 124
            new java.util.HashSet
            dup
            aload 0 /* list */
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            astore 1 /* set */
        start local 1 // java.util.Set set
         4: .line 126
            new org.apache.commons.collections4.set.ListOrderedSet
            dup
            aload 1 /* set */
            aload 0 /* list */
            invokespecial org.apache.commons.collections4.set.ListOrderedSet.<init>:(Ljava/util/Set;Ljava/util/List;)V
            areturn
        end local 1 // java.util.Set set
        end local 0 // java.util.List list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  list  Ljava/util/List<TE;>;
            4    5     1   set  Ljava/util/Set<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/List<TE;>;)Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
    MethodParameters:
      Name  Flags
      list  final

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 137
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            invokespecial org.apache.commons.collections4.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 138
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
         2: .line 139
            return
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;

  protected void <init>(java.util.Set<E>);
    descriptor: (Ljava/util/Set;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.util.Set set
         0: .line 148
            aload 0 /* this */
            aload 1 /* set */
            invokespecial org.apache.commons.collections4.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 149
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 1 /* set */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            putfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
         2: .line 150
            return
        end local 1 // java.util.Set set
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    3     1   set  Ljava/util/Set<TE;>;
    Signature: (Ljava/util/Set<TE;>;)V
    MethodParameters:
      Name  Flags
      set   final

  protected void <init>(java.util.Set<E>, java.util.List<E>);
    descriptor: (Ljava/util/Set;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.util.Set set
        start local 2 // java.util.List list
         0: .line 163
            aload 0 /* this */
            aload 1 /* set */
            invokespecial org.apache.commons.collections4.set.AbstractSerializableSetDecorator.<init>:(Ljava/util/Set;)V
         1: .line 164
            aload 2 /* list */
            ifnonnull 3
         2: .line 165
            new java.lang.NullPointerException
            dup
            ldc "List must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 167
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet java.util.Set java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 2 /* list */
            putfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
         4: .line 168
            return
        end local 2 // java.util.List list
        end local 1 // java.util.Set set
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    5     1   set  Ljava/util/Set<TE;>;
            0    5     2  list  Ljava/util/List<TE;>;
    Signature: (Ljava/util/Set<TE;>;Ljava/util/List<TE;>;)V
    MethodParameters:
      Name  Flags
      set   final
      list  final

  public java.util.List<E> asList();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 177
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokestatic org.apache.commons.collections4.list.UnmodifiableList.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
    Signature: ()Ljava/util/List<TE;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 183
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
         1: .line 184
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         2: .line 185
            return
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;

  public org.apache.commons.collections4.OrderedIterator<E> iterator();
    descriptor: ()Lorg/apache/commons/collections4/OrderedIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 189
            new org.apache.commons.collections4.set.ListOrderedSet$OrderedSetIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.listIterator:()Ljava/util/ListIterator;
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            invokespecial org.apache.commons.collections4.set.ListOrderedSet$OrderedSetIterator.<init>:(Ljava/util/ListIterator;Ljava/util/Collection;)V
            areturn
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
    Signature: ()Lorg/apache/commons/collections4/OrderedIterator<TE;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 194
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 1 /* object */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 195
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 196
            iconst_1
            ireturn
         3: .line 198
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    4     1  object  TE;
    Signature: (TE;)Z
    MethodParameters:
        Name  Flags
      object  final

  public boolean addAll(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 203
            iconst_0
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 204
            aload 1 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* e */
        start local 3 // java.lang.Object e
         3: .line 205
            iload 2 /* result */
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.add:(Ljava/lang/Object;)Z
            ior
            istore 2 /* result */
        end local 3 // java.lang.Object e
         4: .line 204
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 207
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    6     1    coll  Ljava/util/Collection<+TE;>;
            1    6     2  result  Z
            3    4     3       e  TE;
    Signature: (Ljava/util/Collection<+TE;>;)Z
    MethodParameters:
      Name  Flags
      coll  final

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 212
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 1 /* object */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 213
            iload 2 /* result */
            ifeq 3
         2: .line 214
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         3: .line 216
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    4     1  object  Ljava/lang/Object;
            1    4     2  result  Z
    MethodParameters:
        Name  Flags
      object  final

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 221
            iconst_0
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 222
            aload 1 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* name */
        start local 3 // java.lang.Object name
         3: .line 223
            iload 2 /* result */
            aload 0 /* this */
            aload 3 /* name */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.remove:(Ljava/lang/Object;)Z
            ior
            istore 2 /* result */
        end local 3 // java.lang.Object name
         4: .line 222
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 225
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    6     1    coll  Ljava/util/Collection<*>;
            1    6     2  result  Z
            3    4     3    name  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      coll  final

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.util.Collection coll
         0: .line 239
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 1 /* coll */
            invokeinterface java.util.Set.retainAll:(Ljava/util/Collection;)Z
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 240
            iload 2 /* result */
            ifne 3
         2: .line 241
            iconst_0
            ireturn
         3: .line 243
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            ifne 6
         4: .line 244
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         5: .line 245
            goto 11
         6: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         7: goto 10
         8: .line 247
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 10
         9: .line 248
            aload 3 /* it */
            invokeinterface java.util.Iterator.remove:()V
        10: .line 246
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        end local 3 // java.util.Iterator it
        11: .line 252
      StackMap locals:
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection coll
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0   12     1    coll  Ljava/util/Collection<*>;
            1   12     2  result  Z
            7   11     3      it  Ljava/util/Iterator<TE;>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      coll  final

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 257
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;

  public <T> T[] toArray();
    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.set.ListOrderedSet this
        start local 1 // java.lang.Object[] a
         0: .line 262
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* a */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     final

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // int index
         0: .line 277
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  final

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // java.lang.Object object
         0: .line 290
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            aload 1 /* object */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  final

  public void add(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // int index
        start local 2 // java.lang.Object object
         0: .line 303
            aload 0 /* this */
            aload 2 /* object */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.contains:(Ljava/lang/Object;)Z
            ifne 3
         1: .line 304
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 2 /* object */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 305
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* object */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         3: .line 307
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object object
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    4     1   index  I
            0    4     2  object  TE;
    Signature: (ITE;)V
    MethodParameters:
        Name  Flags
      index   final
      object  final

  public boolean addAll(int, java.util.Collection<? extends E>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // int index
        start local 2 // java.util.Collection coll
         0: .line 321
            iconst_0
            istore 3 /* changed */
        start local 3 // boolean changed
         1: .line 323
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* toAdd */
        start local 4 // java.util.List toAdd
         2: .line 324
            aload 2 /* coll */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 9
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet int java.util.Collection int java.util.List top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 5 /* e */
        start local 5 // java.lang.Object e
         4: .line 325
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.contains:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 326
            goto 9
         6: .line 328
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet int java.util.Collection int java.util.List java.lang.Object java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.decorated:()Ljava/util/Set;
            aload 5 /* e */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         7: .line 329
            aload 4 /* toAdd */
            aload 5 /* e */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 330
            iconst_1
            istore 3 /* changed */
        end local 5 // java.lang.Object e
         9: .line 324
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet int java.util.Collection int java.util.List top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        10: .line 333
            iload 3 /* changed */
            ifeq 12
        11: .line 334
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            aload 4 /* toAdd */
            invokeinterface java.util.List.addAll:(ILjava/util/Collection;)Z
            pop
        12: .line 337
      StackMap locals: org.apache.commons.collections4.set.ListOrderedSet int java.util.Collection int java.util.List
      StackMap stack:
            iload 3 /* changed */
            ireturn
        end local 4 // java.util.List toAdd
        end local 3 // boolean changed
        end local 2 // java.util.Collection coll
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0   13     1    index  I
            0   13     2     coll  Ljava/util/Collection<+TE;>;
            1   13     3  changed  Z
            2   13     4    toAdd  Ljava/util/List<TE;>;
            4    9     5        e  TE;
    Signature: (ILjava/util/Collection<+TE;>;)Z
    MethodParameters:
       Name  Flags
      index  final
      coll   final

  public E remove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
        start local 1 // int index
         0: .line 349
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         1: .line 350
            aload 0 /* this */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 351
            aload 2 /* obj */
            areturn
        end local 2 // java.lang.Object obj
        end local 1 // int index
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;
            0    3     1  index  I
            1    3     2    obj  TE;
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  final

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.set.ListOrderedSet this
         0: .line 364
            aload 0 /* this */
            getfield org.apache.commons.collections4.set.ListOrderedSet.setOrder:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.collections4.set.ListOrderedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/set/ListOrderedSet<TE;>;

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.collections4.set.ListOrderedSet.iterator:()Lorg/apache/commons/collections4/OrderedIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Lorg/apache/commons/collections4/set/AbstractSerializableSetDecorator<TE;>;
SourceFile: "ListOrderedSet.java"
NestMembers:
  org.apache.commons.collections4.set.ListOrderedSet$OrderedSetIterator
InnerClasses:
  OrderedSetIterator = org.apache.commons.collections4.set.ListOrderedSet$OrderedSetIterator of org.apache.commons.collections4.set.ListOrderedSet