public final class org.apache.lucene.facet.range.DoubleRange extends org.apache.lucene.facet.range.Range
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.facet.range.DoubleRange
  super_class: org.apache.lucene.facet.range.Range
{
  public final double min;
    descriptor: D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final double max;
    descriptor: D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(java.lang.String, double, boolean, double, boolean);
    descriptor: (Ljava/lang/String;DZDZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=6
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
        start local 1 // java.lang.String label
        start local 2 // double minIn
        start local 4 // boolean minInclusive
        start local 5 // double maxIn
        start local 7 // boolean maxInclusive
         0: .line 50
            aload 0 /* this */
            aload 1 /* label */
            invokespecial org.apache.lucene.facet.range.Range.<init>:(Ljava/lang/String;)V
         1: .line 57
            dload 2 /* minIn */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 3
         2: .line 58
            new java.lang.IllegalArgumentException
            dup
            ldc "min cannot be NaN"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 60
      StackMap locals: org.apache.lucene.facet.range.DoubleRange java.lang.String double int double int
      StackMap stack:
            iload 4 /* minInclusive */
            ifne 5
         4: .line 61
            dload 2 /* minIn */
            invokestatic java.lang.Math.nextUp:(D)D
            dstore 2 /* minIn */
         5: .line 64
      StackMap locals:
      StackMap stack:
            dload 5 /* maxIn */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 7
         6: .line 65
            new java.lang.IllegalArgumentException
            dup
            ldc "max cannot be NaN"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 67
      StackMap locals:
      StackMap stack:
            iload 7 /* maxInclusive */
            ifne 9
         8: .line 69
            dload 5 /* maxIn */
            ldc -Infinity
            invokestatic java.lang.Math.nextAfter:(DD)D
            dstore 5 /* maxIn */
         9: .line 72
      StackMap locals:
      StackMap stack:
            dload 2 /* minIn */
            dload 5 /* maxIn */
            dcmpl
            ifle 11
        10: .line 73
            aload 0 /* this */
            invokevirtual org.apache.lucene.facet.range.DoubleRange.failNoMatch:()V
        11: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 2 /* minIn */
            putfield org.apache.lucene.facet.range.DoubleRange.min:D
        12: .line 77
            aload 0 /* this */
            dload 5 /* maxIn */
            putfield org.apache.lucene.facet.range.DoubleRange.max:D
        13: .line 78
            return
        end local 7 // boolean maxInclusive
        end local 5 // double maxIn
        end local 4 // boolean minInclusive
        end local 2 // double minIn
        end local 1 // java.lang.String label
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lorg/apache/lucene/facet/range/DoubleRange;
            0   14     1         label  Ljava/lang/String;
            0   14     2         minIn  D
            0   14     4  minInclusive  Z
            0   14     5         maxIn  D
            0   14     7  maxInclusive  Z
    MethodParameters:
              Name  Flags
      label         
      minIn         
      minInclusive  
      maxIn         
      maxInclusive  

  public boolean accept(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
        start local 1 // double value
         0: .line 82
            dload 1 /* value */
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            dcmpl
            iflt 1
            dload 1 /* value */
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            dcmpg
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // double value
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/facet/range/DoubleRange;
            0    2     1  value  D
    MethodParameters:
       Name  Flags
      value  

  org.apache.lucene.facet.range.LongRange toLongRange();
    descriptor: ()Lorg/apache/lucene/facet/range/LongRange;
    flags: (0x0000) 
    Code:
      stack=9, locals=1, args_size=1
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
         0: .line 86
            new org.apache.lucene.facet.range.LongRange
            dup
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.label:Ljava/lang/String;
         1: .line 87
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            invokestatic org.apache.lucene.util.NumericUtils.doubleToSortableLong:(D)J
            iconst_1
         2: .line 88
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            invokestatic org.apache.lucene.util.NumericUtils.doubleToSortableLong:(D)J
            iconst_1
         3: .line 86
            invokespecial org.apache.lucene.facet.range.LongRange.<init>:(Ljava/lang/String;JZJZ)V
            areturn
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/facet/range/DoubleRange;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
         0: .line 93
            new java.lang.StringBuilder
            dup
            ldc "DoubleRange("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.label:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc " to "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/facet/range/DoubleRange;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
        start local 1 // java.lang.Object _that
         0: .line 98
            aload 1 /* _that */
            instanceof org.apache.lucene.facet.range.DoubleRange
            ifne 2
         1: .line 99
            iconst_0
            ireturn
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* _that */
            checkcast org.apache.lucene.facet.range.DoubleRange
            astore 2 /* that */
        start local 2 // org.apache.lucene.facet.range.DoubleRange that
         3: .line 102
            aload 2 /* that */
            getfield org.apache.lucene.facet.range.DoubleRange.label:Ljava/lang/String;
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.label:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         4: .line 103
            aload 2 /* that */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
         5: .line 104
            aload 2 /* that */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
         6: .line 102
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.facet.range.DoubleRange
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // org.apache.lucene.facet.range.DoubleRange that
        end local 1 // java.lang.Object _that
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/lucene/facet/range/DoubleRange;
            0    8     1  _that  Ljava/lang/Object;
            3    8     2   that  Lorg/apache/lucene/facet/range/DoubleRange;
    MethodParameters:
       Name  Flags
      _that  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
         0: .line 109
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.label:Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.min:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.facet.range.DoubleRange.max:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            invokestatic java.util.Objects.hash:([Ljava/lang/Object;)I
            ireturn
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/facet/range/DoubleRange;

  public org.apache.lucene.search.Query getQuery(org.apache.lucene.search.Query, org.apache.lucene.search.DoubleValuesSource);
    descriptor: (Lorg/apache/lucene/search/Query;Lorg/apache/lucene/search/DoubleValuesSource;)Lorg/apache/lucene/search/Query;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.lucene.facet.range.DoubleRange this
        start local 1 // org.apache.lucene.search.Query fastMatchQuery
        start local 2 // org.apache.lucene.search.DoubleValuesSource valueSource
         0: .line 221
            new org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery
            dup
            aload 0 /* this */
            aload 1 /* fastMatchQuery */
            aload 2 /* valueSource */
            invokespecial org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery.<init>:(Lorg/apache/lucene/facet/range/DoubleRange;Lorg/apache/lucene/search/Query;Lorg/apache/lucene/search/DoubleValuesSource;)V
            areturn
        end local 2 // org.apache.lucene.search.DoubleValuesSource valueSource
        end local 1 // org.apache.lucene.search.Query fastMatchQuery
        end local 0 // org.apache.lucene.facet.range.DoubleRange this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/apache/lucene/facet/range/DoubleRange;
            0    1     1  fastMatchQuery  Lorg/apache/lucene/search/Query;
            0    1     2     valueSource  Lorg/apache/lucene/search/DoubleValuesSource;
    MethodParameters:
                Name  Flags
      fastMatchQuery  
      valueSource     
}
SourceFile: "DoubleRange.java"
NestMembers:
  org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery  org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery$1  org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery$1$1
InnerClasses:
  private ValueSourceQuery = org.apache.lucene.facet.range.DoubleRange$ValueSourceQuery of org.apache.lucene.facet.range.DoubleRange