class org.apache.lucene.spatial.bbox.BBoxValueSource extends org.apache.lucene.spatial.ShapeValuesSource
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.spatial.bbox.BBoxValueSource
  super_class: org.apache.lucene.spatial.ShapeValuesSource
{
  private final org.apache.lucene.spatial.bbox.BBoxStrategy strategy;
    descriptor: Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.lucene.spatial.bbox.BBoxStrategy);
    descriptor: (Lorg/apache/lucene/spatial/bbox/BBoxStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
        start local 1 // org.apache.lucene.spatial.bbox.BBoxStrategy strategy
         0: .line 39
            aload 0 /* this */
            invokespecial org.apache.lucene.spatial.ShapeValuesSource.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* strategy */
            putfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
         2: .line 41
            return
        end local 1 // org.apache.lucene.spatial.bbox.BBoxStrategy strategy
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
            0    3     1  strategy  Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
    MethodParameters:
          Name  Flags
      strategy  

  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.spatial.bbox.BBoxValueSource this
         0: .line 45
            new java.lang.StringBuilder
            dup
            ldc "bboxShape("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            invokevirtual org.apache.lucene.spatial.bbox.BBoxStrategy.getFieldName:()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;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;

  public org.apache.lucene.spatial.ShapeValues getValues(org.apache.lucene.index.LeafReaderContext);
    descriptor: (Lorg/apache/lucene/index/LeafReaderContext;)Lorg/apache/lucene/spatial/ShapeValues;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=2
        start local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
        start local 1 // org.apache.lucene.index.LeafReaderContext readerContext
         0: .line 50
            aload 1 /* readerContext */
            invokevirtual org.apache.lucene.index.LeafReaderContext.reader:()Lorg/apache/lucene/index/LeafReader;
            astore 2 /* reader */
        start local 2 // org.apache.lucene.index.LeafReader reader
         1: .line 51
            aload 2 /* reader */
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_minX:Ljava/lang/String;
            invokestatic org.apache.lucene.index.DocValues.getNumeric:(Lorg/apache/lucene/index/LeafReader;Ljava/lang/String;)Lorg/apache/lucene/index/NumericDocValues;
            astore 3 /* minX */
        start local 3 // org.apache.lucene.index.NumericDocValues minX
         2: .line 52
            aload 2 /* reader */
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_minY:Ljava/lang/String;
            invokestatic org.apache.lucene.index.DocValues.getNumeric:(Lorg/apache/lucene/index/LeafReader;Ljava/lang/String;)Lorg/apache/lucene/index/NumericDocValues;
            astore 4 /* minY */
        start local 4 // org.apache.lucene.index.NumericDocValues minY
         3: .line 53
            aload 2 /* reader */
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_maxX:Ljava/lang/String;
            invokestatic org.apache.lucene.index.DocValues.getNumeric:(Lorg/apache/lucene/index/LeafReader;Ljava/lang/String;)Lorg/apache/lucene/index/NumericDocValues;
            astore 5 /* maxX */
        start local 5 // org.apache.lucene.index.NumericDocValues maxX
         4: .line 54
            aload 2 /* reader */
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_maxY:Ljava/lang/String;
            invokestatic org.apache.lucene.index.DocValues.getNumeric:(Lorg/apache/lucene/index/LeafReader;Ljava/lang/String;)Lorg/apache/lucene/index/NumericDocValues;
            astore 6 /* maxY */
        start local 6 // org.apache.lucene.index.NumericDocValues maxY
         5: .line 57
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            invokevirtual org.apache.lucene.spatial.bbox.BBoxStrategy.getSpatialContext:()Lorg/locationtech/spatial4j/context/SpatialContext;
            dconst_0
            dconst_0
            dconst_0
            dconst_0
            invokevirtual org.locationtech.spatial4j.context.SpatialContext.makeRectangle:(DDDD)Lorg/locationtech/spatial4j/shape/Rectangle;
            astore 7 /* rect */
        start local 7 // org.locationtech.spatial4j.shape.Rectangle rect
         6: .line 59
            new org.apache.lucene.spatial.bbox.BBoxValueSource$1
            dup
            aload 0 /* this */
            aload 3 /* minX */
            aload 4 /* minY */
            aload 5 /* maxX */
            aload 6 /* maxY */
            aload 7 /* rect */
            invokespecial org.apache.lucene.spatial.bbox.BBoxValueSource$1.<init>:(Lorg/apache/lucene/spatial/bbox/BBoxValueSource;Lorg/apache/lucene/index/NumericDocValues;Lorg/apache/lucene/index/NumericDocValues;Lorg/apache/lucene/index/NumericDocValues;Lorg/apache/lucene/index/NumericDocValues;Lorg/locationtech/spatial4j/shape/Rectangle;)V
            areturn
        end local 7 // org.locationtech.spatial4j.shape.Rectangle rect
        end local 6 // org.apache.lucene.index.NumericDocValues maxY
        end local 5 // org.apache.lucene.index.NumericDocValues maxX
        end local 4 // org.apache.lucene.index.NumericDocValues minY
        end local 3 // org.apache.lucene.index.NumericDocValues minX
        end local 2 // org.apache.lucene.index.LeafReader reader
        end local 1 // org.apache.lucene.index.LeafReaderContext readerContext
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
            0    7     1  readerContext  Lorg/apache/lucene/index/LeafReaderContext;
            1    7     2         reader  Lorg/apache/lucene/index/LeafReader;
            2    7     3           minX  Lorg/apache/lucene/index/NumericDocValues;
            3    7     4           minY  Lorg/apache/lucene/index/NumericDocValues;
            4    7     5           maxX  Lorg/apache/lucene/index/NumericDocValues;
            5    7     6           maxY  Lorg/apache/lucene/index/NumericDocValues;
            6    7     7           rect  Lorg/locationtech/spatial4j/shape/Rectangle;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      readerContext  

  public boolean isCacheable(org.apache.lucene.index.LeafReaderContext);
    descriptor: (Lorg/apache/lucene/index/LeafReaderContext;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
        start local 1 // org.apache.lucene.index.LeafReaderContext ctx
         0: .line 81
            aload 1 /* ctx */
            iconst_4
            anewarray java.lang.String
            dup
            iconst_0
         1: .line 82
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_minX:Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_minY:Ljava/lang/String;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_maxX:Ljava/lang/String;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            getfield org.apache.lucene.spatial.bbox.BBoxStrategy.field_maxY:Ljava/lang/String;
            aastore
         2: .line 81
            invokestatic org.apache.lucene.index.DocValues.isCacheable:(Lorg/apache/lucene/index/LeafReaderContext;[Ljava/lang/String;)Z
            ireturn
        end local 1 // org.apache.lucene.index.LeafReaderContext ctx
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
            0    3     1   ctx  Lorg/apache/lucene/index/LeafReaderContext;
    MethodParameters:
      Name  Flags
      ctx   

  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.spatial.bbox.BBoxValueSource this
        start local 1 // java.lang.Object o
         0: .line 87
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 88
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 90
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.spatial.bbox.BBoxValueSource
            astore 2 /* that */
        start local 2 // org.apache.lucene.spatial.bbox.BBoxValueSource that
         4: .line 92
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            aload 2 /* that */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 5
            iconst_0
            ireturn
         5: .line 94
      StackMap locals: org.apache.lucene.spatial.bbox.BBoxValueSource
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.spatial.bbox.BBoxValueSource that
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
            0    6     1     o  Ljava/lang/Object;
            4    6     2  that  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
         0: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.spatial.bbox.BBoxValueSource.strategy:Lorg/apache/lucene/spatial/bbox/BBoxStrategy;
            invokevirtual java.lang.Object.hashCode:()I
            ireturn
        end local 0 // org.apache.lucene.spatial.bbox.BBoxValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial/bbox/BBoxValueSource;
}
SourceFile: "BBoxValueSource.java"
NestMembers:
  org.apache.lucene.spatial.bbox.BBoxValueSource$1
InnerClasses:
  org.apache.lucene.spatial.bbox.BBoxValueSource$1