final class com.google.common.collect.DiscreteDomain$BigIntegerDomain extends com.google.common.collect.DiscreteDomain<java.math.BigInteger> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.DiscreteDomain$BigIntegerDomain
  super_class: com.google.common.collect.DiscreteDomain
{
  private static final com.google.common.collect.DiscreteDomain$BigIntegerDomain INSTANCE;
    descriptor: Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.math.BigInteger MIN_LONG;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.math.BigInteger MAX_LONG;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 192
            new com.google.common.collect.DiscreteDomain$BigIntegerDomain
            dup
            invokespecial com.google.common.collect.DiscreteDomain$BigIntegerDomain.<init>:()V
            putstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.INSTANCE:Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
         1: .line 198
            ldc -9223372036854775808
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.MIN_LONG:Ljava/math/BigInteger;
         2: .line 199
            ldc 9223372036854775807
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.MAX_LONG:Ljava/math/BigInteger;
         3: .line 231
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
         0: .line 195
            aload 0 /* this */
            iconst_1
            invokespecial com.google.common.collect.DiscreteDomain.<init>:(Z)V
         1: .line 196
            return
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;

  public java.math.BigInteger next(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
        start local 1 // java.math.BigInteger value
         0: .line 203
            aload 1 /* value */
            getstatic java.math.BigInteger.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.add:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 1 // java.math.BigInteger value
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
            0    1     1  value  Ljava/math/BigInteger;
    MethodParameters:
       Name  Flags
      value  

  public java.math.BigInteger previous(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
        start local 1 // java.math.BigInteger value
         0: .line 208
            aload 1 /* value */
            getstatic java.math.BigInteger.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.subtract:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 1 // java.math.BigInteger value
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
            0    1     1  value  Ljava/math/BigInteger;
    MethodParameters:
       Name  Flags
      value  

  java.math.BigInteger offset(java.math.BigInteger, long);
    descriptor: (Ljava/math/BigInteger;J)Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
        start local 1 // java.math.BigInteger origin
        start local 2 // long distance
         0: .line 213
            lload 2 /* distance */
            ldc "distance"
            invokestatic com.google.common.collect.CollectPreconditions.checkNonnegative:(JLjava/lang/String;)J
            pop2
         1: .line 214
            aload 1 /* origin */
            lload 2 /* distance */
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.add:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
        end local 2 // long distance
        end local 1 // java.math.BigInteger origin
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
            0    2     1    origin  Ljava/math/BigInteger;
            0    2     2  distance  J
    MethodParameters:
          Name  Flags
      origin    
      distance  

  public long distance(java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
        start local 1 // java.math.BigInteger start
        start local 2 // java.math.BigInteger end
         0: .line 219
            aload 2 /* end */
            aload 1 /* start */
            invokevirtual java.math.BigInteger.subtract:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            getstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.MIN_LONG:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.max:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            getstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.MAX_LONG:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.min:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.longValue:()J
            lreturn
        end local 2 // java.math.BigInteger end
        end local 1 // java.math.BigInteger start
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
            0    1     1  start  Ljava/math/BigInteger;
            0    1     2    end  Ljava/math/BigInteger;
    MethodParameters:
       Name  Flags
      start  
      end    

  private java.lang.Object readResolve();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
         0: .line 223
            getstatic com.google.common.collect.DiscreteDomain$BigIntegerDomain.INSTANCE:Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;
            areturn
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
         0: .line 228
            ldc "DiscreteDomain.bigIntegers()"
            areturn
        end local 0 // com.google.common.collect.DiscreteDomain$BigIntegerDomain this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DiscreteDomain$BigIntegerDomain;

  public java.lang.Comparable next(java.lang.Comparable);
    descriptor: (Ljava/lang/Comparable;)Ljava/lang/Comparable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            invokevirtual com.google.common.collect.DiscreteDomain$BigIntegerDomain.next:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public long distance(java.lang.Comparable, java.lang.Comparable);
    descriptor: (Ljava/lang/Comparable;Ljava/lang/Comparable;)J
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            aload 2
            checkcast java.math.BigInteger
            invokevirtual com.google.common.collect.DiscreteDomain$BigIntegerDomain.distance:(Ljava/math/BigInteger;Ljava/math/BigInteger;)J
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Comparable previous(java.lang.Comparable);
    descriptor: (Ljava/lang/Comparable;)Ljava/lang/Comparable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            invokevirtual com.google.common.collect.DiscreteDomain$BigIntegerDomain.previous:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  java.lang.Comparable offset(java.lang.Comparable, long);
    descriptor: (Ljava/lang/Comparable;J)Ljava/lang/Comparable;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.math.BigInteger
            lload 2
            invokevirtual com.google.common.collect.DiscreteDomain$BigIntegerDomain.offset:(Ljava/math/BigInteger;J)Ljava/math/BigInteger;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/common/collect/DiscreteDomain<Ljava/math/BigInteger;>;Ljava/io/Serializable;
SourceFile: "DiscreteDomain.java"
NestHost: com.google.common.collect.DiscreteDomain
InnerClasses:
  private final BigIntegerDomain = com.google.common.collect.DiscreteDomain$BigIntegerDomain of com.google.common.collect.DiscreteDomain