class org.glassfish.jersey.internal.guava.Collections2$TransformedCollection<F, T> extends java.util.AbstractCollection<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.glassfish.jersey.internal.guava.Collections2$TransformedCollection
  super_class: java.util.AbstractCollection
{
  final java.util.Collection<F> fromCollection;
    descriptor: Ljava/util/Collection;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Collection<TF;>;

  final java.util.function.Function<? super F, ? extends T> function;
    descriptor: Ljava/util/function/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/function/Function<-TF;+TT;>;

  void <init>(java.util.Collection<F>, java.util.function.Function<? super F, ? extends T>);
    descriptor: (Ljava/util/Collection;Ljava/util/function/Function;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
        start local 1 // java.util.Collection fromCollection
        start local 2 // java.util.function.Function function
         0: .line 117
            aload 0 /* this */
            invokespecial java.util.AbstractCollection.<init>:()V
         1: .line 119
            aload 0 /* this */
            aload 1 /* fromCollection */
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Collection
            putfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.fromCollection:Ljava/util/Collection;
         2: .line 120
            aload 0 /* this */
            aload 2 /* function */
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.function.Function
            putfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.function:Ljava/util/function/Function;
         3: .line 121
            return
        end local 2 // java.util.function.Function function
        end local 1 // java.util.Collection fromCollection
        end local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lorg/glassfish/jersey/internal/guava/Collections2$TransformedCollection<TF;TT;>;
            0    4     1  fromCollection  Ljava/util/Collection<TF;>;
            0    4     2        function  Ljava/util/function/Function<-TF;+TT;>;
    Signature: (Ljava/util/Collection<TF;>;Ljava/util/function/Function<-TF;+TT;>;)V
    MethodParameters:
                Name  Flags
      fromCollection  
      function        

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
         0: .line 125
            aload 0 /* this */
            getfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.fromCollection:Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         1: .line 126
            return
        end local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/jersey/internal/guava/Collections2$TransformedCollection<TF;TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
         0: .line 130
            aload 0 /* this */
            getfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.fromCollection:Ljava/util/Collection;
            invokeinterface java.util.Collection.isEmpty:()Z
            ireturn
        end local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/internal/guava/Collections2$TransformedCollection<TF;TT;>;

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
         0: .line 135
            aload 0 /* this */
            getfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.fromCollection:Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            aload 0 /* this */
            getfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.function:Ljava/util/function/Function;
            invokestatic org.glassfish.jersey.internal.guava.Iterators.transform:(Ljava/util/Iterator;Ljava/util/function/Function;)Ljava/util/Iterator;
            areturn
        end local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/internal/guava/Collections2$TransformedCollection<TF;TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
         0: .line 140
            aload 0 /* this */
            getfield org.glassfish.jersey.internal.guava.Collections2$TransformedCollection.fromCollection:Ljava/util/Collection;
            invokeinterface java.util.Collection.size:()I
            ireturn
        end local 0 // org.glassfish.jersey.internal.guava.Collections2$TransformedCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/internal/guava/Collections2$TransformedCollection<TF;TT;>;
}
Signature: <F:Ljava/lang/Object;T:Ljava/lang/Object;>Ljava/util/AbstractCollection<TT;>;
SourceFile: "Collections2.java"
NestHost: org.glassfish.jersey.internal.guava.Collections2
InnerClasses:
  TransformedCollection = org.glassfish.jersey.internal.guava.Collections2$TransformedCollection of org.glassfish.jersey.internal.guava.Collections2