final class org.apache.lucene.document.LatLonPointDistanceQuery 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.LatLonPointDistanceQuery
  super_class: org.apache.lucene.search.Query
{
  final java.lang.String field;
    descriptor: Ljava/lang/String;
    flags: (0x0010) ACC_FINAL

  final double latitude;
    descriptor: D
    flags: (0x0010) ACC_FINAL

  final double longitude;
    descriptor: D
    flags: (0x0010) ACC_FINAL

  final double radiusMeters;
    descriptor: D
    flags: (0x0010) ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            ldc Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.document.LatLonPointDistanceQuery.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, double, double, double);
    descriptor: (Ljava/lang/String;DDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery 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 60
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 61
            aload 1 /* field */
            ifnonnull 3
         2: .line 62
            new java.lang.IllegalArgumentException
            dup
            ldc "field must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 64
      StackMap locals: org.apache.lucene.document.LatLonPointDistanceQuery java.lang.String double double double
      StackMap stack:
            dload 6 /* radiusMeters */
            invokestatic java.lang.Double.isFinite:(D)Z
            ifeq 4
            dload 6 /* radiusMeters */
            dconst_0
            dcmpg
            ifge 5
         4: .line 65
      StackMap locals:
      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
         5: .line 67
      StackMap locals:
      StackMap stack:
            dload 2 /* latitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLatitude:(D)V
         6: .line 68
            dload 4 /* longitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLongitude:(D)V
         7: .line 69
            aload 0 /* this */
            aload 1 /* field */
            putfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
         8: .line 70
            aload 0 /* this */
            dload 2 /* latitude */
            putfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
         9: .line 71
            aload 0 /* this */
            dload 4 /* longitude */
            putfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
        10: .line 72
            aload 0 /* this */
            dload 6 /* radiusMeters */
            putfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
        11: .line 73
            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.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            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.LatLonPointDistanceQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 77
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 78
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.visitLeaf:(Lorg/apache/lucene/search/Query;)V
         2: .line 80
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            0    3     1  visitor  Lorg/apache/lucene/search/QueryVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  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=15, locals=14, args_size=4
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery 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 84
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic org.apache.lucene.geo.Rectangle.fromPointDistance:(DDD)Lorg/apache/lucene/geo/Rectangle;
            astore 4 /* box */
        start local 4 // org.apache.lucene.geo.Rectangle box
         1: .line 87
            iconst_4
            newarray 8
            astore 5 /* minLat */
        start local 5 // byte[] minLat
         2: .line 88
            iconst_4
            newarray 8
            astore 6 /* maxLat */
        start local 6 // byte[] maxLat
         3: .line 89
            iconst_4
            newarray 8
            astore 7 /* minLon */
        start local 7 // byte[] minLon
         4: .line 90
            iconst_4
            newarray 8
            astore 8 /* maxLon */
        start local 8 // byte[] maxLon
         5: .line 92
            iconst_4
            newarray 8
            astore 9 /* minLon2 */
        start local 9 // byte[] minLon2
         6: .line 94
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.minLat:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitude:(D)I
            aload 5 /* minLat */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
         7: .line 95
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.maxLat:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitude:(D)I
            aload 6 /* maxLat */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
         8: .line 98
            aload 4 /* box */
            invokevirtual org.apache.lucene.geo.Rectangle.crossesDateline:()Z
            ifeq 13
         9: .line 100
            ldc -2147483648
            aload 7 /* minLon */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        10: .line 101
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.maxLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            aload 8 /* maxLon */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        11: .line 103
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.minLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            aload 9 /* minLon2 */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        12: .line 104
            goto 16
        13: .line 105
      StackMap locals: org.apache.lucene.document.LatLonPointDistanceQuery org.apache.lucene.search.IndexSearcher org.apache.lucene.search.ScoreMode float org.apache.lucene.geo.Rectangle byte[] byte[] byte[] byte[] byte[]
      StackMap stack:
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.minLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            aload 7 /* minLon */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        14: .line 106
            aload 4 /* box */
            getfield org.apache.lucene.geo.Rectangle.maxLon:D
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            aload 8 /* maxLon */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        15: .line 108
            ldc 2147483647
            aload 9 /* minLon2 */
            iconst_0
            invokestatic org.apache.lucene.util.NumericUtils.intToSortableBytes:(I[BI)V
        16: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic org.apache.lucene.geo.GeoUtils.distanceQuerySortKey:(D)D
            dstore 10 /* sortKey */
        start local 10 // double sortKey
        17: .line 114
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic org.apache.lucene.geo.Rectangle.axisLat:(DD)D
            dstore 12 /* axisLat */
        start local 12 // double axisLat
        18: .line 116
            new org.apache.lucene.document.LatLonPointDistanceQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            fload 3 /* boost */
            aload 6 /* maxLat */
            aload 5 /* minLat */
            aload 8 /* maxLon */
            aload 7 /* minLon */
            aload 9 /* minLon2 */
            dload 10 /* sortKey */
            dload 12 /* axisLat */
            aload 2 /* scoreMode */
            invokespecial org.apache.lucene.document.LatLonPointDistanceQuery$1.<init>:(Lorg/apache/lucene/document/LatLonPointDistanceQuery;Lorg/apache/lucene/search/Query;F[B[B[B[B[BDDLorg/apache/lucene/search/ScoreMode;)V
            areturn
        end local 12 // double axisLat
        end local 10 // double sortKey
        end local 9 // byte[] minLon2
        end local 8 // byte[] maxLon
        end local 7 // byte[] minLon
        end local 6 // byte[] maxLat
        end local 5 // byte[] minLat
        end local 4 // org.apache.lucene.geo.Rectangle box
        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.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   19     0       this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            0   19     1   searcher  Lorg/apache/lucene/search/IndexSearcher;
            0   19     2  scoreMode  Lorg/apache/lucene/search/ScoreMode;
            0   19     3      boost  F
            1   19     4        box  Lorg/apache/lucene/geo/Rectangle;
            2   19     5     minLat  [B
            3   19     6     maxLat  [B
            4   19     7     minLon  [B
            5   19     8     maxLon  [B
            6   19     9    minLon2  [B
           17   19    10    sortKey  D
           18   19    12    axisLat  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      searcher   
      scoreMode  
      boost      

  public java.lang.String getField();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
         0: .line 330
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;

  public double getLatitude();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
         0: .line 334
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            dreturn
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;

  public double getLongitude();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
         0: .line 338
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            dreturn
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;

  public double getRadiusMeters();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
         0: .line 342
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            dreturn
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
         0: .line 348
            aload 0 /* this */
            invokevirtual org.apache.lucene.document.LatLonPointDistanceQuery.classHash:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 349
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 351
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 2 /* temp */
        start local 2 // long temp
         3: .line 352
            bipush 31
            iload 1 /* result */
            imul
            lload 2 /* temp */
            lload 2 /* temp */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         4: .line 353
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 2 /* temp */
         5: .line 354
            bipush 31
            iload 1 /* result */
            imul
            lload 2 /* temp */
            lload 2 /* temp */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         6: .line 355
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 2 /* temp */
         7: .line 356
            bipush 31
            iload 1 /* result */
            imul
            lload 2 /* temp */
            lload 2 /* temp */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         8: .line 357
            iload 1 /* result */
            ireturn
        end local 2 // long temp
        end local 1 // int result
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            1    9     1  result  I
            3    9     2    temp  J

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

  private boolean equalsTo(org.apache.lucene.document.LatLonPointDistanceQuery);
    descriptor: (Lorg/apache/lucene/document/LatLonPointDistanceQuery;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
        start local 1 // org.apache.lucene.document.LatLonPointDistanceQuery other
         0: .line 367
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         1: .line 368
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 5
         2: .line 369
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 5
         3: .line 370
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 1 /* other */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifne 5
         4: .line 367
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // org.apache.lucene.document.LatLonPointDistanceQuery other
        end local 0 // org.apache.lucene.document.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            0    6     1  other  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
    MethodParameters:
       Name  Flags
      other  

  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.LatLonPointDistanceQuery this
        start local 1 // java.lang.String field
         0: .line 375
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         1: .line 376
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            aload 1 /* field */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 377
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.field:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 378
            aload 2 /* sb */
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 380
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.latitude:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         5: .line 381
            aload 2 /* sb */
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 382
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.longitude:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         7: .line 383
            aload 2 /* sb */
            ldc " +/- "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 384
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonPointDistanceQuery.radiusMeters:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         9: .line 385
            aload 2 /* sb */
            ldc " meters"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 386
            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.LatLonPointDistanceQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/lucene/document/LatLonPointDistanceQuery;
            0   11     1  field  Ljava/lang/String;
            1   11     2     sb  Ljava/lang/StringBuilder;
    MethodParameters:
       Name  Flags
      field  
}
SourceFile: "LatLonPointDistanceQuery.java"
NestMembers:
  org.apache.lucene.document.LatLonPointDistanceQuery$1  org.apache.lucene.document.LatLonPointDistanceQuery$1$1  org.apache.lucene.document.LatLonPointDistanceQuery$1$2  org.apache.lucene.document.LatLonPointDistanceQuery$1$3
InnerClasses:
  org.apache.lucene.document.LatLonPointDistanceQuery$1