class com.google.common.collect.ComparisonChain$1 extends com.google.common.collect.ComparisonChain
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.ComparisonChain$1
  super_class: com.google.common.collect.ComparisonChain
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ComparisonChain$1 this
         0: .line 69
            aload 0 /* this */
            invokespecial com.google.common.collect.ComparisonChain.<init>:()V
            return
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ComparisonChain$1;

  public com.google.common.collect.ComparisonChain compare(java.lang.Comparable, java.lang.Comparable);
    descriptor: (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // java.lang.Comparable left
        start local 2 // java.lang.Comparable right
         0: .line 73
            aload 0 /* this */
            aload 1 /* left */
            aload 2 /* right */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 2 // java.lang.Comparable right
        end local 1 // java.lang.Comparable left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  Ljava/lang/Comparable;
            0    1     2  right  Ljava/lang/Comparable;
    MethodParameters:
       Name  Flags
      left   
      right  

  public <T> com.google.common.collect.ComparisonChain compare(T, T, java.util.Comparator<T>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Comparator;)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // java.lang.Object left
        start local 2 // java.lang.Object right
        start local 3 // java.util.Comparator comparator
         0: .line 79
            aload 0 /* this */
            aload 3 /* comparator */
            aload 1 /* left */
            aload 2 /* right */
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 3 // java.util.Comparator comparator
        end local 2 // java.lang.Object right
        end local 1 // java.lang.Object left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1        left  TT;
            0    1     2       right  TT;
            0    1     3  comparator  Ljava/util/Comparator<TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;TT;Ljava/util/Comparator<TT;>;)Lcom/google/common/collect/ComparisonChain;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
            Name  Flags
      left        
      right       
      comparator  

  public com.google.common.collect.ComparisonChain compare(int, int);
    descriptor: (II)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // int left
        start local 2 // int right
         0: .line 84
            aload 0 /* this */
            iload 1 /* left */
            iload 2 /* right */
            invokestatic com.google.common.primitives.Ints.compare:(II)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 2 // int right
        end local 1 // int left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  I
            0    1     2  right  I
    MethodParameters:
       Name  Flags
      left   
      right  

  public com.google.common.collect.ComparisonChain compare(long, long);
    descriptor: (JJ)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // long left
        start local 3 // long right
         0: .line 89
            aload 0 /* this */
            lload 1 /* left */
            lload 3 /* right */
            invokestatic com.google.common.primitives.Longs.compare:(JJ)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 3 // long right
        end local 1 // long left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  J
            0    1     3  right  J
    MethodParameters:
       Name  Flags
      left   
      right  

  public com.google.common.collect.ComparisonChain compare(float, float);
    descriptor: (FF)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // float left
        start local 2 // float right
         0: .line 94
            aload 0 /* this */
            fload 1 /* left */
            fload 2 /* right */
            invokestatic java.lang.Float.compare:(FF)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 2 // float right
        end local 1 // float left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  F
            0    1     2  right  F
    MethodParameters:
       Name  Flags
      left   
      right  

  public com.google.common.collect.ComparisonChain compare(double, double);
    descriptor: (DD)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // double left
        start local 3 // double right
         0: .line 99
            aload 0 /* this */
            dload 1 /* left */
            dload 3 /* right */
            invokestatic java.lang.Double.compare:(DD)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 3 // double right
        end local 1 // double left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  D
            0    1     3  right  D
    MethodParameters:
       Name  Flags
      left   
      right  

  public com.google.common.collect.ComparisonChain compareTrueFirst(boolean, boolean);
    descriptor: (ZZ)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // boolean left
        start local 2 // boolean right
         0: .line 104
            aload 0 /* this */
            iload 2 /* right */
            iload 1 /* left */
            invokestatic com.google.common.primitives.Booleans.compare:(ZZ)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 2 // boolean right
        end local 1 // boolean left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  Z
            0    1     2  right  Z
    MethodParameters:
       Name  Flags
      left   
      right  

  public com.google.common.collect.ComparisonChain compareFalseFirst(boolean, boolean);
    descriptor: (ZZ)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // boolean left
        start local 2 // boolean right
         0: .line 109
            aload 0 /* this */
            iload 1 /* left */
            iload 2 /* right */
            invokestatic com.google.common.primitives.Booleans.compare:(ZZ)I
            invokevirtual com.google.common.collect.ComparisonChain$1.classify:(I)Lcom/google/common/collect/ComparisonChain;
            areturn
        end local 2 // boolean right
        end local 1 // boolean left
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ComparisonChain$1;
            0    1     1   left  Z
            0    1     2  right  Z
    MethodParameters:
       Name  Flags
      left   
      right  

  com.google.common.collect.ComparisonChain classify(int);
    descriptor: (I)Lcom/google/common/collect/ComparisonChain;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.google.common.collect.ComparisonChain$1 this
        start local 1 // int result
         0: .line 113
            iload 1 /* result */
            ifge 1
            getstatic com.google.common.collect.ComparisonChain.LESS:Lcom/google/common/collect/ComparisonChain;
            goto 3
      StackMap locals:
      StackMap stack:
         1: iload 1 /* result */
            ifle 2
            getstatic com.google.common.collect.ComparisonChain.GREATER:Lcom/google/common/collect/ComparisonChain;
            goto 3
      StackMap locals:
      StackMap stack:
         2: getstatic com.google.common.collect.ComparisonChain.ACTIVE:Lcom/google/common/collect/ComparisonChain;
      StackMap locals:
      StackMap stack: com.google.common.collect.ComparisonChain
         3: areturn
        end local 1 // int result
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/ComparisonChain$1;
            0    4     1  result  I
    MethodParameters:
        Name  Flags
      result  

  public int result();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ComparisonChain$1 this
         0: .line 118
            iconst_0
            ireturn
        end local 0 // com.google.common.collect.ComparisonChain$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ComparisonChain$1;
}
SourceFile: "ComparisonChain.java"
EnclosingMethod: com.google.common.collect.ComparisonChain
NestHost: com.google.common.collect.ComparisonChain
InnerClasses:
  com.google.common.collect.ComparisonChain$1