final class com.google.common.collect.DescendingImmutableSortedSet<E> extends com.google.common.collect.ImmutableSortedSet<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.DescendingImmutableSortedSet
  super_class: com.google.common.collect.ImmutableSortedSet
{
  private final com.google.common.collect.ImmutableSortedSet<E> forward;
    descriptor: Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/ImmutableSortedSet<TE;>;

  void <init>(com.google.common.collect.ImmutableSortedSet<E>);
    descriptor: (Lcom/google/common/collect/ImmutableSortedSet;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // com.google.common.collect.ImmutableSortedSet forward
         0: .line 32
            aload 0 /* this */
            aload 1 /* forward */
            invokevirtual com.google.common.collect.ImmutableSortedSet.comparator:()Ljava/util/Comparator;
            invokestatic com.google.common.collect.Ordering.from:(Ljava/util/Comparator;)Lcom/google/common/collect/Ordering;
            invokevirtual com.google.common.collect.Ordering.reverse:()Lcom/google/common/collect/Ordering;
            invokespecial com.google.common.collect.ImmutableSortedSet.<init>:(Ljava/util/Comparator;)V
         1: .line 33
            aload 0 /* this */
            aload 1 /* forward */
            putfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
         2: .line 34
            return
        end local 1 // com.google.common.collect.ImmutableSortedSet forward
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    3     1  forward  Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    Signature: (Lcom/google/common/collect/ImmutableSortedSet<TE;>;)V
    MethodParameters:
         Name  Flags
      forward  

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object object
         0: .line 38
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* object */
            invokevirtual com.google.common.collect.ImmutableSortedSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  object  Ljava/lang/Object;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      object  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 43
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.size:()I
            ireturn
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;

  public com.google.common.collect.UnmodifiableIterator<E> iterator();
    descriptor: ()Lcom/google/common/collect/UnmodifiableIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 48
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.descendingIterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
    Signature: ()Lcom/google/common/collect/UnmodifiableIterator<TE;>;

  com.google.common.collect.ImmutableSortedSet<E> headSetImpl(E, boolean);
    descriptor: (Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object toElement
        start local 2 // boolean inclusive
         0: .line 53
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* toElement */
            iload 2 /* inclusive */
            invokevirtual com.google.common.collect.ImmutableSortedSet.tailSet:(Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.descendingSet:()Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object toElement
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  toElement  TE;
            0    1     2  inclusive  Z
    Signature: (TE;Z)Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    MethodParameters:
           Name  Flags
      toElement  
      inclusive  

  com.google.common.collect.ImmutableSortedSet<E> subSetImpl(E, boolean, E, boolean);
    descriptor: (Ljava/lang/Object;ZLjava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object fromElement
        start local 2 // boolean fromInclusive
        start local 3 // java.lang.Object toElement
        start local 4 // boolean toInclusive
         0: .line 59
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 3 /* toElement */
            iload 4 /* toInclusive */
            aload 1 /* fromElement */
            iload 2 /* fromInclusive */
            invokevirtual com.google.common.collect.ImmutableSortedSet.subSet:(Ljava/lang/Object;ZLjava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.descendingSet:()Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 4 // boolean toInclusive
        end local 3 // java.lang.Object toElement
        end local 2 // boolean fromInclusive
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1    fromElement  TE;
            0    1     2  fromInclusive  Z
            0    1     3      toElement  TE;
            0    1     4    toInclusive  Z
    Signature: (TE;ZTE;Z)Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    MethodParameters:
               Name  Flags
      fromElement    
      fromInclusive  
      toElement      
      toInclusive    

  com.google.common.collect.ImmutableSortedSet<E> tailSetImpl(E, boolean);
    descriptor: (Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object fromElement
        start local 2 // boolean inclusive
         0: .line 64
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* fromElement */
            iload 2 /* inclusive */
            invokevirtual com.google.common.collect.ImmutableSortedSet.headSet:(Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.descendingSet:()Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  fromElement  TE;
            0    1     2    inclusive  Z
    Signature: (TE;Z)Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    MethodParameters:
             Name  Flags
      fromElement  
      inclusive    

  public com.google.common.collect.ImmutableSortedSet<E> descendingSet();
    descriptor: ()Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 70
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible(value = "NavigableSet")

  public com.google.common.collect.UnmodifiableIterator<E> descendingIterator();
    descriptor: ()Lcom/google/common/collect/UnmodifiableIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 76
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.iterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
    Signature: ()Lcom/google/common/collect/UnmodifiableIterator<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible(value = "NavigableSet")

  com.google.common.collect.ImmutableSortedSet<E> createDescendingSet();
    descriptor: ()Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 82
            new java.lang.AssertionError
            dup
            ldc "should never be called"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableSortedSet<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible(value = "NavigableSet")

  public E lower();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object element
         0: .line 87
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* element */
            invokevirtual com.google.common.collect.ImmutableSortedSet.higher:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  element  TE;
    Signature: (TE;)TE;
    MethodParameters:
         Name  Flags
      element  

  public E floor();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object element
         0: .line 92
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* element */
            invokevirtual com.google.common.collect.ImmutableSortedSet.ceiling:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  element  TE;
    Signature: (TE;)TE;
    MethodParameters:
         Name  Flags
      element  

  public E ceiling();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object element
         0: .line 97
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* element */
            invokevirtual com.google.common.collect.ImmutableSortedSet.floor:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  element  TE;
    Signature: (TE;)TE;
    MethodParameters:
         Name  Flags
      element  

  public E higher();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object element
         0: .line 102
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* element */
            invokevirtual com.google.common.collect.ImmutableSortedSet.lower:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object element
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    1     1  element  TE;
    Signature: (TE;)TE;
    MethodParameters:
         Name  Flags
      element  

  int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
        start local 1 // java.lang.Object target
         0: .line 107
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            aload 1 /* target */
            invokevirtual com.google.common.collect.ImmutableSortedSet.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 108
            iload 2 /* index */
            iconst_m1
            if_icmpne 3
         2: .line 109
            iload 2 /* index */
            ireturn
         3: .line 111
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.DescendingImmutableSortedSet.size:()I
            iconst_1
            isub
            iload 2 /* index */
            isub
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object target
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/DescendingImmutableSortedSet<TE;>;
            0    4     1  target  Ljava/lang/Object;
            1    4     2   index  I
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      target  

  boolean isPartialView();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DescendingImmutableSortedSet this
         0: .line 117
            aload 0 /* this */
            getfield com.google.common.collect.DescendingImmutableSortedSet.forward:Lcom/google/common/collect/ImmutableSortedSet;
            invokevirtual com.google.common.collect.ImmutableSortedSet.isPartialView:()Z
            ireturn
        end local 0 // com.google.common.collect.DescendingImmutableSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DescendingImmutableSortedSet<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 com.google.common.collect.DescendingImmutableSortedSet.iterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Iterator descendingIterator();
    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 com.google.common.collect.DescendingImmutableSortedSet.descendingIterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.NavigableSet descendingSet();
    descriptor: ()Ljava/util/NavigableSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.DescendingImmutableSortedSet.descendingSet:()Lcom/google/common/collect/ImmutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Lcom/google/common/collect/ImmutableSortedSet<TE;>;
SourceFile: "DescendingImmutableSortedSet.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()