final class org.apache.lucene.document.LatLonPointDistanceFeatureQuery 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.LatLonPointDistanceFeatureQuery
  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 originLat;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final double pivotDistance;
    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.LatLonPointDistanceFeatureQuery this
        start local 1 // java.lang.String field
        start local 2 // double originLat
        start local 4 // double originLon
        start local 6 // double pivotDistance
         0: .line 56
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 57
            aload 0 /* this */
            aload 1 /* field */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.field:Ljava/lang/String;
         2: .line 58
            dload 2 /* originLat */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLatitude:(D)V
         3: .line 59
            dload 4 /* originLon */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLongitude:(D)V
         4: .line 60
            aload 0 /* this */
            dload 4 /* originLon */
            putfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
         5: .line 61
            aload 0 /* this */
            dload 2 /* originLat */
            putfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
         6: .line 62
            dload 6 /* pivotDistance */
            dconst_0
            dcmpg
            ifgt 8
         7: .line 63
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "pivotDistance must be > 0, got "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            dload 6 /* pivotDistance */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 65
      StackMap locals: org.apache.lucene.document.LatLonPointDistanceFeatureQuery java.lang.String double double double
      StackMap stack:
            aload 0 /* this */
            dload 6 /* pivotDistance */
            putfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.pivotDistance:D
         9: .line 66
            return
        end local 6 // double pivotDistance
        end local 4 // double originLon
        end local 2 // double originLat
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0   10     1          field  Ljava/lang/String;
            0   10     2      originLat  D
            0   10     4      originLon  D
            0   10     6  pivotDistance  D
    MethodParameters:
               Name  Flags
      field          
      originLat      
      originLon      
      pivotDistance  

  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.LatLonPointDistanceFeatureQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 70
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 71
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.visitLeaf:(Lorg/apache/lucene/search/Query;)V
         2: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    3     1  visitor  Lorg/apache/lucene/search/QueryVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public final boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
        start local 1 // java.lang.Object o
         0: .line 77
            aload 0 /* this */
            aload 1 /* o */
            invokevirtual org.apache.lucene.document.LatLonPointDistanceFeatureQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 78
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.document.LatLonPointDistanceFeatureQuery
            invokevirtual org.apache.lucene.document.LatLonPointDistanceFeatureQuery.equalsTo:(Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;)Z
            ifeq 3
         2: .line 77
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    4     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  private boolean equalsTo(org.apache.lucene.document.LatLonPointDistanceFeatureQuery);
    descriptor: (Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
        start local 1 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery other
         0: .line 82
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.field:Ljava/lang/String;
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.field:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         1: .line 83
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
            dcmpl
            ifne 5
         2: .line 84
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
            dcmpl
            ifne 5
         3: .line 85
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.pivotDistance:D
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.pivotDistance:D
            dcmpl
            ifne 5
         4: .line 82
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery other
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    6     1  other  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
         0: .line 90
            aload 0 /* this */
            invokevirtual org.apache.lucene.document.LatLonPointDistanceFeatureQuery.classHash:()I
            istore 1 /* h */
        start local 1 // int h
         1: .line 91
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* h */
         2: .line 92
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         3: .line 93
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         4: .line 94
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.pivotDistance:D
            invokestatic java.lang.Double.hashCode:(D)I
            iadd
            istore 1 /* h */
         5: .line 95
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            1    6     1     h  I

  public java.lang.String toString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
        start local 1 // java.lang.String field
         0: .line 100
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "(field="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* field */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ",originLat="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc ",originLon="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc ",pivotDistance="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.pivotDistance: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 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    1     1  field  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      field  

  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=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery 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.LatLonPointDistanceFeatureQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            fload 3 /* boost */
            invokespecial org.apache.lucene.document.LatLonPointDistanceFeatureQuery$1.<init>:(Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;Lorg/apache/lucene/search/Query;F)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.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            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      

  private double getDistanceFromEncoded(long);
    descriptor: (J)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
        start local 1 // long encoded
         0: .line 242
            aload 0 /* this */
            lload 1 /* encoded */
            invokevirtual org.apache.lucene.document.LatLonPointDistanceFeatureQuery.getDistanceKeyFromEncoded:(J)D
            invokestatic org.apache.lucene.util.SloppyMath.haversinMeters:(D)D
            dreturn
        end local 1 // long encoded
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    1     1  encoded  J
    MethodParameters:
         Name  Flags
      encoded  

  private double getDistanceKeyFromEncoded(long);
    descriptor: (J)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=9, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
        start local 1 // long encoded
         0: .line 246
            lload 1 /* encoded */
            bipush 32
            lshr
            l2i
            istore 3 /* latitudeBits */
        start local 3 // int latitudeBits
         1: .line 247
            lload 1 /* encoded */
            ldc -1
            land
            l2i
            istore 4 /* longitudeBits */
        start local 4 // int longitudeBits
         2: .line 248
            iload 3 /* latitudeBits */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLatitude:(I)D
            dstore 5 /* lat */
        start local 5 // double lat
         3: .line 249
            iload 4 /* longitudeBits */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            dstore 7 /* lon */
        start local 7 // double lon
         4: .line 250
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLat:D
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceFeatureQuery.originLon:D
            dload 5 /* lat */
            dload 7 /* lon */
            invokestatic org.apache.lucene.util.SloppyMath.haversinSortKey:(DDDD)D
            dreturn
        end local 7 // double lon
        end local 5 // double lat
        end local 4 // int longitudeBits
        end local 3 // int latitudeBits
        end local 1 // long encoded
        end local 0 // org.apache.lucene.document.LatLonPointDistanceFeatureQuery this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/lucene/document/LatLonPointDistanceFeatureQuery;
            0    5     1        encoded  J
            1    5     3   latitudeBits  I
            2    5     4  longitudeBits  I
            3    5     5            lat  D
            4    5     7            lon  D
    MethodParameters:
         Name  Flags
      encoded  
}
SourceFile: "LatLonPointDistanceFeatureQuery.java"
NestMembers:
  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$1  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$1$1  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$1$2  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$DistanceScorer  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$DistanceScorer$1  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$DistanceScorer$2
InnerClasses:
  org.apache.lucene.document.LatLonPointDistanceFeatureQuery$1
  private DistanceScorer = org.apache.lucene.document.LatLonPointDistanceFeatureQuery$DistanceScorer of org.apache.lucene.document.LatLonPointDistanceFeatureQuery