final class org.apache.lucene.document.LatLonDocValuesDistanceQuery extends org.apache.lucene.search.Query
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.document.LatLonDocValuesDistanceQuery
  super_class: org.apache.lucene.search.Query
{
  private final java.lang.String field;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double latitude;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double longitude;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double radiusMeters;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String, double, double, double);
    descriptor: (Ljava/lang/String;DDD)V
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
        start local 1 // java.lang.String field
        start local 2 // double latitude
        start local 4 // double longitude
        start local 6 // double radiusMeters
         0: .line 43
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 44
            dload 6 /* radiusMeters */
            invokestatic java.lang.Double.isFinite:(D)Z
            ifeq 2
            dload 6 /* radiusMeters */
            dconst_0
            dcmpg
            ifge 3
         2: .line 45
      StackMap locals: org.apache.lucene.document.LatLonDocValuesDistanceQuery java.lang.String double double double
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "radiusMeters: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            dload 6 /* radiusMeters */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc "' is invalid"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 47
      StackMap locals:
      StackMap stack:
            dload 2 /* latitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLatitude:(D)V
         4: .line 48
            dload 4 /* longitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLongitude:(D)V
         5: .line 49
            aload 1 /* field */
            ifnonnull 7
         6: .line 50
            new java.lang.IllegalArgumentException
            dup
            ldc "field must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* field */
            putfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
         8: .line 53
            aload 0 /* this */
            dload 2 /* latitude */
            putfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.latitude:D
         9: .line 54
            aload 0 /* this */
            dload 4 /* longitude */
            putfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.longitude:D
        10: .line 55
            aload 0 /* this */
            dload 6 /* radiusMeters */
            putfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.radiusMeters:D
        11: .line 56
            return
        end local 6 // double radiusMeters
        end local 4 // double longitude
        end local 2 // double latitude
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            0   12     1         field  Ljava/lang/String;
            0   12     2      latitude  D
            0   12     4     longitude  D
            0   12     6  radiusMeters  D
    MethodParameters:
              Name  Flags
      field         
      latitude      
      longitude     
      radiusMeters  

  public void visit(org.apache.lucene.search.QueryVisitor);
    descriptor: (Lorg/apache/lucene/search/QueryVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 60
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 61
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.visitLeaf:(Lorg/apache/lucene/search/Query;)V
         2: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            0    3     1  visitor  Lorg/apache/lucene/search/QueryVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public java.lang.String toString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
        start local 1 // java.lang.String field
         0: .line 67
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         1: .line 68
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            aload 1 /* field */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 69
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 70
            aload 2 /* sb */
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 72
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.latitude:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         5: .line 73
            aload 2 /* sb */
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 74
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.longitude:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         7: .line 75
            aload 2 /* sb */
            ldc " +/- "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 76
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.radiusMeters:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         9: .line 77
            aload 2 /* sb */
            ldc " meters"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 78
            aload 2 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuilder sb
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            0   11     1  field  Ljava/lang/String;
            1   11     2     sb  Ljava/lang/StringBuilder;
    MethodParameters:
       Name  Flags
      field  

  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.document.LatLonDocValuesDistanceQuery this
        start local 1 // java.lang.Object obj
         0: .line 83
            aload 0 /* this */
            aload 1 /* obj */
            invokevirtual org.apache.lucene.document.LatLonDocValuesDistanceQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 84
            iconst_0
            ireturn
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.document.LatLonDocValuesDistanceQuery
            astore 2 /* other */
        start local 2 // org.apache.lucene.document.LatLonDocValuesDistanceQuery other
         3: .line 87
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         4: .line 88
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.latitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.latitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 8
         5: .line 89
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.longitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.longitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 8
         6: .line 90
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 8
         7: .line 87
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.document.LatLonDocValuesDistanceQuery
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.apache.lucene.document.LatLonDocValuesDistanceQuery other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            0    9     1    obj  Ljava/lang/Object;
            3    9     2  other  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
         0: .line 95
            aload 0 /* this */
            invokevirtual org.apache.lucene.document.LatLonDocValuesDistanceQuery.classHash:()I
            istore 1 /* h */
        start local 1 // int h
         1: .line 96
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* h */
         2: .line 97
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.latitude:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         3: .line 98
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.longitude:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         4: .line 99
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         5: .line 100
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            1    6     1     h  I

  public org.apache.lucene.search.Weight createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float);
    descriptor: (Lorg/apache/lucene/search/IndexSearcher;Lorg/apache/lucene/search/ScoreMode;F)Lorg/apache/lucene/search/Weight;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
        start local 1 // org.apache.lucene.search.IndexSearcher searcher
        start local 2 // org.apache.lucene.search.ScoreMode scoreMode
        start local 3 // float boost
         0: .line 105
            new org.apache.lucene.document.LatLonDocValuesDistanceQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            fload 3 /* boost */
            fload 3 /* boost */
            aload 2 /* scoreMode */
            invokespecial org.apache.lucene.document.LatLonDocValuesDistanceQuery$1.<init>:(Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;Lorg/apache/lucene/search/Query;FFLorg/apache/lucene/search/ScoreMode;)V
            areturn
        end local 3 // float boost
        end local 2 // org.apache.lucene.search.ScoreMode scoreMode
        end local 1 // org.apache.lucene.search.IndexSearcher searcher
        end local 0 // org.apache.lucene.document.LatLonDocValuesDistanceQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/lucene/document/LatLonDocValuesDistanceQuery;
            0    1     1   searcher  Lorg/apache/lucene/search/IndexSearcher;
            0    1     2  scoreMode  Lorg/apache/lucene/search/ScoreMode;
            0    1     3      boost  F
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      searcher   
      scoreMode  
      boost      
}
SourceFile: "LatLonDocValuesDistanceQuery.java"
NestMembers:
  org.apache.lucene.document.LatLonDocValuesDistanceQuery$1  org.apache.lucene.document.LatLonDocValuesDistanceQuery$1$1
InnerClasses:
  org.apache.lucene.document.LatLonDocValuesDistanceQuery$1