public class org.apache.commons.collections4.SetUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections4.SetUtils
  super_class: java.lang.Object
{
  public static final java.util.SortedSet EMPTY_SORTED_SET;
    descriptor: Ljava/util/SortedSet;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 107
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            invokestatic org.apache.commons.collections4.set.UnmodifiableSortedSet.unmodifiableSortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
         1: .line 106
            putstatic org.apache.commons.collections4.SetUtils.EMPTY_SORTED_SET:Ljava/util/SortedSet;
         2: .line 107
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static <E> org.apache.commons.collections4.SetUtils$SetView<E> difference(java.util.Set<? extends E>, java.util.Set<? extends E>);
    descriptor: (Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.util.Set a
        start local 1 // java.util.Set b
         0: .line 124
            aload 0 /* a */
            ifnull 1
            aload 1 /* b */
            ifnonnull 2
         1: .line 125
      StackMap locals:
      StackMap stack:
            new java.lang.NullPointerException
            dup
            ldc "Sets must not be null."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 128
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections4.SetUtils$1
            dup
            aload 1 /* b */
            invokespecial org.apache.commons.collections4.SetUtils$1.<init>:(Ljava/util/Set;)V
            astore 2 /* notContainedInB */
        start local 2 // org.apache.commons.collections4.Predicate notContainedInB
         3: .line 135
            new org.apache.commons.collections4.SetUtils$2
            dup
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* notContainedInB */
            invokespecial org.apache.commons.collections4.SetUtils$2.<init>:(Ljava/util/Set;Ljava/util/Set;Lorg/apache/commons/collections4/Predicate;)V
            areturn
        end local 2 // org.apache.commons.collections4.Predicate notContainedInB
        end local 1 // java.util.Set b
        end local 0 // java.util.Set a
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0                a  Ljava/util/Set<+TE;>;
            0    4     1                b  Ljava/util/Set<+TE;>;
            3    4     2  notContainedInB  Lorg/apache/commons/collections4/Predicate<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<+TE;>;Ljava/util/Set<+TE;>;)Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  public static <E> org.apache.commons.collections4.SetUtils$SetView<E> disjunction(java.util.Set<? extends E>, java.util.Set<? extends E>);
    descriptor: (Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // java.util.Set a
        start local 1 // java.util.Set b
         0: .line 165
            aload 0 /* a */
            ifnull 1
            aload 1 /* b */
            ifnonnull 2
         1: .line 166
      StackMap locals:
      StackMap stack:
            new java.lang.NullPointerException
            dup
            ldc "Sets must not be null."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            aload 1 /* b */
            invokestatic org.apache.commons.collections4.SetUtils.difference:(Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
            astore 2 /* aMinusB */
        start local 2 // org.apache.commons.collections4.SetUtils$SetView aMinusB
         3: .line 170
            aload 1 /* b */
            aload 0 /* a */
            invokestatic org.apache.commons.collections4.SetUtils.difference:(Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
            astore 3 /* bMinusA */
        start local 3 // org.apache.commons.collections4.SetUtils$SetView bMinusA
         4: .line 172
            new org.apache.commons.collections4.SetUtils$3
            dup
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* aMinusB */
            aload 3 /* bMinusA */
            invokespecial org.apache.commons.collections4.SetUtils$3.<init>:(Ljava/util/Set;Ljava/util/Set;Lorg/apache/commons/collections4/SetUtils$SetView;Lorg/apache/commons/collections4/SetUtils$SetView;)V
            areturn
        end local 3 // org.apache.commons.collections4.SetUtils$SetView bMinusA
        end local 2 // org.apache.commons.collections4.SetUtils$SetView aMinusB
        end local 1 // java.util.Set b
        end local 0 // java.util.Set a
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0        a  Ljava/util/Set<+TE;>;
            0    5     1        b  Ljava/util/Set<+TE;>;
            3    5     2  aMinusB  Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
            4    5     3  bMinusA  Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<+TE;>;Ljava/util/Set<+TE;>;)Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  public static <T> java.util.Set<T> emptyIfNull(java.util.Set<T>);
    descriptor: (Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 204
            aload 0 /* set */
            ifnonnull 1
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* set */
      StackMap locals:
      StackMap stack: java.util.Set
         2: areturn
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   set  Ljava/util/Set<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;)Ljava/util/Set<TT;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.Set<E> emptySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 215
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Ljava/util/Set<TE;>;

  public static <E> java.util.SortedSet<E> emptySortedSet();
    descriptor: ()Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 225
            getstatic org.apache.commons.collections4.SetUtils.EMPTY_SORTED_SET:Ljava/util/SortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Ljava/util/SortedSet<TE;>;

  public static <T> int hashCodeForSet(java.util.Collection<T>);
    descriptor: (Ljava/util/Collection;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.util.Collection set
         0: .line 242
            aload 0 /* set */
            ifnonnull 2
         1: .line 243
            iconst_0
            ireturn
         2: .line 246
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* hashCode */
        start local 1 // int hashCode
         3: .line 247
            aload 0 /* set */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals: java.util.Collection int top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         5: .line 248
            aload 2 /* obj */
            ifnull 7
         6: .line 249
            iload 1 /* hashCode */
            aload 2 /* obj */
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* hashCode */
        end local 2 // java.lang.Object obj
         7: .line 247
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 252
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // java.util.Collection set
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0       set  Ljava/util/Collection<TT;>;
            3    9     1  hashCode  I
            5    7     2       obj  TT;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<TT;>;)I
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.HashSet<E> hashSet(E[]);
    descriptor: ([Ljava/lang/Object;)Ljava/util/HashSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Object[] items
         0: .line 264
            aload 0 /* items */
            ifnonnull 2
         1: .line 265
            aconst_null
            areturn
         2: .line 267
      StackMap locals:
      StackMap stack:
            new java.util.HashSet
            dup
            aload 0 /* items */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // java.lang.Object[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  items  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Ljava/util/HashSet<TE;>;
    MethodParameters:
       Name  Flags
      items  final

  public static <E> org.apache.commons.collections4.SetUtils$SetView<E> intersection(java.util.Set<? extends E>, java.util.Set<? extends E>);
    descriptor: (Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.util.Set a
        start local 1 // java.util.Set b
         0: .line 284
            aload 0 /* a */
            ifnull 1
            aload 1 /* b */
            ifnonnull 2
         1: .line 285
      StackMap locals:
      StackMap stack:
            new java.lang.NullPointerException
            dup
            ldc "Sets must not be null."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 288
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections4.SetUtils$4
            dup
            aload 1 /* b */
            invokespecial org.apache.commons.collections4.SetUtils$4.<init>:(Ljava/util/Set;)V
            astore 2 /* containedInB */
        start local 2 // org.apache.commons.collections4.Predicate containedInB
         3: .line 295
            new org.apache.commons.collections4.SetUtils$5
            dup
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* containedInB */
            invokespecial org.apache.commons.collections4.SetUtils$5.<init>:(Ljava/util/Set;Ljava/util/Set;Lorg/apache/commons/collections4/Predicate;)V
            areturn
        end local 2 // org.apache.commons.collections4.Predicate containedInB
        end local 1 // java.util.Set b
        end local 0 // java.util.Set a
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0             a  Ljava/util/Set<+TE;>;
            0    4     1             b  Ljava/util/Set<+TE;>;
            3    4     2  containedInB  Lorg/apache/commons/collections4/Predicate<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<+TE;>;Ljava/util/Set<+TE;>;)Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  public static boolean isEqualSet(java.util.Collection<?>, java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;Ljava/util/Collection;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.Collection set1
        start local 1 // java.util.Collection set2
         0: .line 337
            aload 0 /* set1 */
            aload 1 /* set2 */
            if_acmpne 2
         1: .line 338
            iconst_1
            ireturn
         2: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* set1 */
            ifnull 3
            aload 1 /* set2 */
            ifnull 3
            aload 0 /* set1 */
            invokeinterface java.util.Collection.size:()I
            aload 1 /* set2 */
            invokeinterface java.util.Collection.size:()I
            if_icmpeq 4
         3: .line 341
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* set1 */
            aload 1 /* set2 */
            invokeinterface java.util.Collection.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection set2
        end local 0 // java.util.Collection set1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  set1  Ljava/util/Collection<*>;
            0    5     1  set2  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      set1  final
      set2  final

  public static <E> java.util.Set<E> newIdentityHashSet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 367
            new java.util.IdentityHashMap
            dup
            invokespecial java.util.IdentityHashMap.<init>:()V
            invokestatic java.util.Collections.newSetFromMap:(Ljava/util/Map;)Ljava/util/Set;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Ljava/util/Set<TE;>;

  public static <E> java.util.Set<E> orderedSet(java.util.Set<E>);
    descriptor: (Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 383
            aload 0 /* set */
            invokestatic org.apache.commons.collections4.set.ListOrderedSet.listOrderedSet:(Ljava/util/Set;)Lorg/apache/commons/collections4/set/ListOrderedSet;
            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;>;)Ljava/util/Set<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.SortedSet<E> predicatedNavigableSet(java.util.NavigableSet<E>, org.apache.commons.collections4.Predicate<? super E>);
    descriptor: (Ljava/util/NavigableSet;Lorg/apache/commons/collections4/Predicate;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.NavigableSet set
        start local 1 // org.apache.commons.collections4.Predicate predicate
         0: .line 403
            aload 0 /* set */
            aload 1 /* predicate */
            invokestatic org.apache.commons.collections4.set.PredicatedNavigableSet.predicatedNavigableSet:(Ljava/util/NavigableSet;Lorg/apache/commons/collections4/Predicate;)Lorg/apache/commons/collections4/set/PredicatedNavigableSet;
            areturn
        end local 1 // org.apache.commons.collections4.Predicate predicate
        end local 0 // java.util.NavigableSet set
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0        set  Ljava/util/NavigableSet<TE;>;
            0    1     1  predicate  Lorg/apache/commons/collections4/Predicate<-TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/NavigableSet<TE;>;Lorg/apache/commons/collections4/Predicate<-TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
           Name  Flags
      set        final
      predicate  final

  public static <E> java.util.Set<E> predicatedSet(java.util.Set<E>, org.apache.commons.collections4.Predicate<? super E>);
    descriptor: (Ljava/util/Set;Lorg/apache/commons/collections4/Predicate;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.Set set
        start local 1 // org.apache.commons.collections4.Predicate predicate
         0: .line 421
            aload 0 /* set */
            aload 1 /* predicate */
            invokestatic org.apache.commons.collections4.set.PredicatedSet.predicatedSet:(Ljava/util/Set;Lorg/apache/commons/collections4/Predicate;)Lorg/apache/commons/collections4/set/PredicatedSet;
            areturn
        end local 1 // org.apache.commons.collections4.Predicate predicate
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0        set  Ljava/util/Set<TE;>;
            0    1     1  predicate  Lorg/apache/commons/collections4/Predicate<-TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<TE;>;Lorg/apache/commons/collections4/Predicate<-TE;>;)Ljava/util/Set<TE;>;
    MethodParameters:
           Name  Flags
      set        final
      predicate  final

  public static <E> java.util.SortedSet<E> predicatedSortedSet(java.util.SortedSet<E>, org.apache.commons.collections4.Predicate<? super E>);
    descriptor: (Ljava/util/SortedSet;Lorg/apache/commons/collections4/Predicate;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.SortedSet set
        start local 1 // org.apache.commons.collections4.Predicate predicate
         0: .line 440
            aload 0 /* set */
            aload 1 /* predicate */
            invokestatic org.apache.commons.collections4.set.PredicatedSortedSet.predicatedSortedSet:(Ljava/util/SortedSet;Lorg/apache/commons/collections4/Predicate;)Lorg/apache/commons/collections4/set/PredicatedSortedSet;
            areturn
        end local 1 // org.apache.commons.collections4.Predicate predicate
        end local 0 // java.util.SortedSet set
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0        set  Ljava/util/SortedSet<TE;>;
            0    1     1  predicate  Lorg/apache/commons/collections4/Predicate<-TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/SortedSet<TE;>;Lorg/apache/commons/collections4/Predicate<-TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
           Name  Flags
      set        final
      predicate  final

  public static <E> java.util.Set<E> synchronizedSet(java.util.Set<E>);
    descriptor: (Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 469
            aload 0 /* set */
            invokestatic java.util.Collections.synchronizedSet:(Ljava/util/Set;)Ljava/util/Set;
            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;>;)Ljava/util/Set<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.SortedSet<E> synchronizedSortedSet(java.util.SortedSet<E>);
    descriptor: (Ljava/util/SortedSet;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.SortedSet set
         0: .line 498
            aload 0 /* set */
            invokestatic java.util.Collections.synchronizedSortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
            areturn
        end local 0 // java.util.SortedSet set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/SortedSet<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/SortedSet<TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.SortedSet<E> transformedNavigableSet(java.util.NavigableSet<E>, org.apache.commons.collections4.Transformer<? super E, ? extends E>);
    descriptor: (Ljava/util/NavigableSet;Lorg/apache/commons/collections4/Transformer;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.NavigableSet set
        start local 1 // org.apache.commons.collections4.Transformer transformer
         0: .line 520
            aload 0 /* set */
            aload 1 /* transformer */
            invokestatic org.apache.commons.collections4.set.TransformedNavigableSet.transformingNavigableSet:(Ljava/util/NavigableSet;Lorg/apache/commons/collections4/Transformer;)Lorg/apache/commons/collections4/set/TransformedNavigableSet;
            areturn
        end local 1 // org.apache.commons.collections4.Transformer transformer
        end local 0 // java.util.NavigableSet set
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0          set  Ljava/util/NavigableSet<TE;>;
            0    1     1  transformer  Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/NavigableSet<TE;>;Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
             Name  Flags
      set          final
      transformer  final

  public static <E> java.util.Set<E> transformedSet(java.util.Set<E>, org.apache.commons.collections4.Transformer<? super E, ? extends E>);
    descriptor: (Ljava/util/Set;Lorg/apache/commons/collections4/Transformer;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.Set set
        start local 1 // org.apache.commons.collections4.Transformer transformer
         0: .line 541
            aload 0 /* set */
            aload 1 /* transformer */
            invokestatic org.apache.commons.collections4.set.TransformedSet.transformingSet:(Ljava/util/Set;Lorg/apache/commons/collections4/Transformer;)Lorg/apache/commons/collections4/set/TransformedSet;
            areturn
        end local 1 // org.apache.commons.collections4.Transformer transformer
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0          set  Ljava/util/Set<TE;>;
            0    1     1  transformer  Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<TE;>;Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;)Ljava/util/Set<TE;>;
    MethodParameters:
             Name  Flags
      set          final
      transformer  final

  public static <E> java.util.SortedSet<E> transformedSortedSet(java.util.SortedSet<E>, org.apache.commons.collections4.Transformer<? super E, ? extends E>);
    descriptor: (Ljava/util/SortedSet;Lorg/apache/commons/collections4/Transformer;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.SortedSet set
        start local 1 // org.apache.commons.collections4.Transformer transformer
         0: .line 562
            aload 0 /* set */
            aload 1 /* transformer */
            invokestatic org.apache.commons.collections4.set.TransformedSortedSet.transformingSortedSet:(Ljava/util/SortedSet;Lorg/apache/commons/collections4/Transformer;)Lorg/apache/commons/collections4/set/TransformedSortedSet;
            areturn
        end local 1 // org.apache.commons.collections4.Transformer transformer
        end local 0 // java.util.SortedSet set
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0          set  Ljava/util/SortedSet<TE;>;
            0    1     1  transformer  Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/SortedSet<TE;>;Lorg/apache/commons/collections4/Transformer<-TE;+TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
             Name  Flags
      set          final
      transformer  final

  public static <E> org.apache.commons.collections4.SetUtils$SetView<E> union(java.util.Set<? extends E>, java.util.Set<? extends E>);
    descriptor: (Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.util.Set a
        start local 1 // java.util.Set b
         0: .line 582
            aload 0 /* a */
            ifnull 1
            aload 1 /* b */
            ifnonnull 2
         1: .line 583
      StackMap locals:
      StackMap stack:
            new java.lang.NullPointerException
            dup
            ldc "Sets must not be null."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 586
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            aload 0 /* a */
            invokestatic org.apache.commons.collections4.SetUtils.difference:(Ljava/util/Set;Ljava/util/Set;)Lorg/apache/commons/collections4/SetUtils$SetView;
            astore 2 /* bMinusA */
        start local 2 // org.apache.commons.collections4.SetUtils$SetView bMinusA
         3: .line 588
            new org.apache.commons.collections4.SetUtils$6
            dup
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* bMinusA */
            invokespecial org.apache.commons.collections4.SetUtils$6.<init>:(Ljava/util/Set;Ljava/util/Set;Lorg/apache/commons/collections4/SetUtils$SetView;)V
            areturn
        end local 2 // org.apache.commons.collections4.SetUtils$SetView bMinusA
        end local 1 // java.util.Set b
        end local 0 // java.util.Set a
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0        a  Ljava/util/Set<+TE;>;
            0    4     1        b  Ljava/util/Set<+TE;>;
            3    4     2  bMinusA  Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Set<+TE;>;Ljava/util/Set<+TE;>;)Lorg/apache/commons/collections4/SetUtils$SetView<TE;>;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  public static <E> java.util.SortedSet<E> unmodifiableNavigableSet(java.util.NavigableSet<E>);
    descriptor: (Ljava/util/NavigableSet;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.NavigableSet set
         0: .line 625
            aload 0 /* set */
            invokestatic org.apache.commons.collections4.set.UnmodifiableNavigableSet.unmodifiableNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
            areturn
        end local 0 // java.util.NavigableSet set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/NavigableSet<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/NavigableSet<TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.Set<E> unmodifiableSet(E[]);
    descriptor: ([Ljava/lang/Object;)Ljava/util/Set;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object[] items
         0: .line 637
            aload 0 /* items */
            ifnonnull 2
         1: .line 638
            aconst_null
            areturn
         2: .line 640
      StackMap locals:
      StackMap stack:
            aload 0 /* items */
            invokestatic org.apache.commons.collections4.SetUtils.hashSet:([Ljava/lang/Object;)Ljava/util/HashSet;
            invokestatic org.apache.commons.collections4.set.UnmodifiableSet.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 0 // java.lang.Object[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  items  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Ljava/util/Set<TE;>;
    MethodParameters:
       Name  Flags
      items  final

  public static <E> java.util.Set<E> unmodifiableSet(java.util.Set<? extends E>);
    descriptor: (Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.Set set
         0: .line 654
            aload 0 /* set */
            invokestatic org.apache.commons.collections4.set.UnmodifiableSet.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            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;>;)Ljava/util/Set<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  public static <E> java.util.SortedSet<E> unmodifiableSortedSet(java.util.SortedSet<E>);
    descriptor: (Ljava/util/SortedSet;)Ljava/util/SortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.SortedSet set
         0: .line 668
            aload 0 /* set */
            invokestatic org.apache.commons.collections4.set.UnmodifiableSortedSet.unmodifiableSortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
            areturn
        end local 0 // java.util.SortedSet set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   set  Ljava/util/SortedSet<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/SortedSet<TE;>;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
      Name  Flags
      set   final

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.SetUtils this
         0: .line 674
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.collections4.SetUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/SetUtils;
}
SourceFile: "SetUtils.java"
NestMembers:
  org.apache.commons.collections4.SetUtils$1  org.apache.commons.collections4.SetUtils$2  org.apache.commons.collections4.SetUtils$3  org.apache.commons.collections4.SetUtils$4  org.apache.commons.collections4.SetUtils$5  org.apache.commons.collections4.SetUtils$6  org.apache.commons.collections4.SetUtils$SetView
InnerClasses:
  org.apache.commons.collections4.SetUtils$1
  org.apache.commons.collections4.SetUtils$2
  org.apache.commons.collections4.SetUtils$3
  org.apache.commons.collections4.SetUtils$4
  org.apache.commons.collections4.SetUtils$5
  org.apache.commons.collections4.SetUtils$6
  public abstract SetView = org.apache.commons.collections4.SetUtils$SetView of org.apache.commons.collections4.SetUtils