final class org.apache.lucene.document.LatLonDocValuesBoxQuery 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.LatLonDocValuesBoxQuery
  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 int minLatitude;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxLatitude;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int minLongitude;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxLongitude;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean crossesDateline;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String, double, double, double, double);
    descriptor: (Ljava/lang/String;DDDD)V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, args_size=6
        start local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
        start local 1 // java.lang.String field
        start local 2 // double minLatitude
        start local 4 // double maxLatitude
        start local 6 // double minLongitude
        start local 8 // double maxLongitude
         0: .line 43
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 44
            dload 2 /* minLatitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLatitude:(D)V
         2: .line 45
            dload 4 /* maxLatitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLatitude:(D)V
         3: .line 46
            dload 6 /* minLongitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLongitude:(D)V
         4: .line 47
            dload 8 /* maxLongitude */
            invokestatic org.apache.lucene.geo.GeoUtils.checkLongitude:(D)V
         5: .line 48
            aload 1 /* field */
            ifnonnull 7
         6: .line 49
            new java.lang.IllegalArgumentException
            dup
            ldc "field must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 51
      StackMap locals: org.apache.lucene.document.LatLonDocValuesBoxQuery java.lang.String double double double double
      StackMap stack:
            aload 0 /* this */
            aload 1 /* field */
            putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
         8: .line 52
            aload 0 /* this */
            dload 6 /* minLongitude */
            dload 8 /* maxLongitude */
            dcmpl
            ifle 9
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack: org.apache.lucene.document.LatLonDocValuesBoxQuery
         9: iconst_0
      StackMap locals: org.apache.lucene.document.LatLonDocValuesBoxQuery java.lang.String double double double double
      StackMap stack: org.apache.lucene.document.LatLonDocValuesBoxQuery int
        10: putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.crossesDateline:Z
        11: .line 53
            aload 0 /* this */
            dload 2 /* minLatitude */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitudeCeil:(D)I
            putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLatitude:I
        12: .line 54
            aload 0 /* this */
            dload 4 /* maxLatitude */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLatitude:(D)I
            putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLatitude:I
        13: .line 55
            aload 0 /* this */
            dload 6 /* minLongitude */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitudeCeil:(D)I
            putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLongitude:I
        14: .line 56
            aload 0 /* this */
            dload 8 /* maxLongitude */
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude:(D)I
            putfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLongitude:I
        15: .line 57
            return
        end local 8 // double maxLongitude
        end local 6 // double minLongitude
        end local 4 // double maxLatitude
        end local 2 // double minLatitude
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            0   16     1         field  Ljava/lang/String;
            0   16     2   minLatitude  D
            0   16     4   maxLatitude  D
            0   16     6  minLongitude  D
            0   16     8  maxLongitude  D
    MethodParameters:
              Name  Flags
      field         
      minLatitude   
      maxLatitude   
      minLongitude  
      maxLongitude  

  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.LatLonDocValuesBoxQuery this
        start local 1 // java.lang.String field
         0: .line 61
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         1: .line 62
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            aload 1 /* field */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 63
            aload 2 /* sb */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 64
            aload 2 /* sb */
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 66
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 2 /* sb */
            ldc "box(minLat="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLatitude:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLatitude:(I)D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         5: .line 67
            aload 2 /* sb */
            ldc ", maxLat="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLatitude:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLatitude:(I)D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         6: .line 68
            aload 2 /* sb */
            ldc ", minLon="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLongitude:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         7: .line 69
            aload 2 /* sb */
            ldc ", maxLon="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLongitude:I
            invokestatic org.apache.lucene.geo.GeoEncodingUtils.decodeLongitude:(I)D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
         8: .line 70
            aload 2 /* sb */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            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.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            0    9     1  field  Ljava/lang/String;
            1    9     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=2, locals=3, args_size=2
        start local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
        start local 1 // java.lang.Object obj
         0: .line 75
            aload 0 /* this */
            aload 1 /* obj */
            invokevirtual org.apache.lucene.document.LatLonDocValuesBoxQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 76
            iconst_0
            ireturn
         2: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.document.LatLonDocValuesBoxQuery
            astore 2 /* other */
        start local 2 // org.apache.lucene.document.LatLonDocValuesBoxQuery other
         3: .line 79
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         4: .line 80
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.crossesDateline:Z
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.crossesDateline:Z
            if_icmpne 10
         5: .line 81
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLatitude:I
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLatitude:I
            if_icmpne 10
         6: .line 82
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLatitude:I
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLatitude:I
            if_icmpne 10
         7: .line 83
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLongitude:I
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLongitude:I
            if_icmpne 10
         8: .line 84
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLongitude:I
            aload 2 /* other */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLongitude:I
            if_icmpne 10
         9: .line 79
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.document.LatLonDocValuesBoxQuery
      StackMap stack:
        10: iconst_0
            ireturn
        end local 2 // org.apache.lucene.document.LatLonDocValuesBoxQuery other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            0   11     1    obj  Ljava/lang/Object;
            3   11     2  other  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
         0: .line 89
            aload 0 /* this */
            invokevirtual org.apache.lucene.document.LatLonDocValuesBoxQuery.classHash:()I
            istore 1 /* h */
        start local 1 // int h
         1: .line 90
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* h */
         2: .line 91
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.crossesDateline:Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* h */
         3: .line 92
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLatitude:I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* h */
         4: .line 93
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLatitude:I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* h */
         5: .line 94
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.minLongitude:I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* h */
         6: .line 95
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.maxLongitude:I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* h */
         7: .line 96
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            1    8     1     h  I

  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.LatLonDocValuesBoxQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 101
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.document.LatLonDocValuesBoxQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 102
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.visitLeaf:(Lorg/apache/lucene/search/Query;)V
         2: .line 104
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            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=7, locals=4, args_size=4
        start local 0 // org.apache.lucene.document.LatLonDocValuesBoxQuery 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 108
            new org.apache.lucene.document.LatLonDocValuesBoxQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            fload 3 /* boost */
            fload 3 /* boost */
            aload 2 /* scoreMode */
            invokespecial org.apache.lucene.document.LatLonDocValuesBoxQuery$1.<init>:(Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;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.LatLonDocValuesBoxQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/lucene/document/LatLonDocValuesBoxQuery;
            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: "LatLonDocValuesBoxQuery.java"
NestMembers:
  org.apache.lucene.document.LatLonDocValuesBoxQuery$1  org.apache.lucene.document.LatLonDocValuesBoxQuery$1$1
InnerClasses:
  org.apache.lucene.document.LatLonDocValuesBoxQuery$1