public class org.apache.lucene.spatial.util.CachingDoubleValueSource extends org.apache.lucene.search.DoubleValuesSource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.spatial.util.CachingDoubleValueSource
  super_class: org.apache.lucene.search.DoubleValuesSource
{
  final org.apache.lucene.search.DoubleValuesSource source;
    descriptor: Lorg/apache/lucene/search/DoubleValuesSource;
    flags: (0x0010) ACC_FINAL

  final java.util.Map<java.lang.Integer, java.lang.Double> cache;
    descriptor: Ljava/util/Map;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljava/lang/Double;>;

  public void <init>(org.apache.lucene.search.DoubleValuesSource);
    descriptor: (Lorg/apache/lucene/search/DoubleValuesSource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
        start local 1 // org.apache.lucene.search.DoubleValuesSource source
         0: .line 39
            aload 0 /* this */
            invokespecial org.apache.lucene.search.DoubleValuesSource.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* source */
            putfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
         2: .line 41
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.apache.lucene.spatial.util.CachingDoubleValueSource.cache:Ljava/util/Map;
         3: .line 42
            return
        end local 1 // org.apache.lucene.search.DoubleValuesSource source
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    4     1  source  Lorg/apache/lucene/search/DoubleValuesSource;
    MethodParameters:
        Name  Flags
      source  

  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.util.CachingDoubleValueSource this
         0: .line 46
            new java.lang.StringBuilder
            dup
            ldc "Cached["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            invokevirtual org.apache.lucene.search.DoubleValuesSource.toString:()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.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;

  public org.apache.lucene.search.DoubleValues getValues(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.DoubleValues);
    descriptor: (Lorg/apache/lucene/index/LeafReaderContext;Lorg/apache/lucene/search/DoubleValues;)Lorg/apache/lucene/search/DoubleValues;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
        start local 1 // org.apache.lucene.index.LeafReaderContext readerContext
        start local 2 // org.apache.lucene.search.DoubleValues scores
         0: .line 51
            aload 1 /* readerContext */
            getfield org.apache.lucene.index.LeafReaderContext.docBase:I
            istore 3 /* base */
        start local 3 // int base
         1: .line 52
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            aload 1 /* readerContext */
            aload 2 /* scores */
            invokevirtual org.apache.lucene.search.DoubleValuesSource.getValues:(Lorg/apache/lucene/index/LeafReaderContext;Lorg/apache/lucene/search/DoubleValues;)Lorg/apache/lucene/search/DoubleValues;
            astore 4 /* vals */
        start local 4 // org.apache.lucene.search.DoubleValues vals
         2: .line 53
            new org.apache.lucene.spatial.util.CachingDoubleValueSource$1
            dup
            aload 0 /* this */
            iload 3 /* base */
            aload 4 /* vals */
            invokespecial org.apache.lucene.spatial.util.CachingDoubleValueSource$1.<init>:(Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;ILorg/apache/lucene/search/DoubleValues;)V
            areturn
        end local 4 // org.apache.lucene.search.DoubleValues vals
        end local 3 // int base
        end local 2 // org.apache.lucene.search.DoubleValues scores
        end local 1 // org.apache.lucene.index.LeafReaderContext readerContext
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    3     1  readerContext  Lorg/apache/lucene/index/LeafReaderContext;
            0    3     2         scores  Lorg/apache/lucene/search/DoubleValues;
            1    3     3           base  I
            2    3     4           vals  Lorg/apache/lucene/search/DoubleValues;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      readerContext  
      scores         

  public boolean needsScores();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
         0: .line 79
            iconst_0
            ireturn
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;

  public boolean isCacheable(org.apache.lucene.index.LeafReaderContext);
    descriptor: (Lorg/apache/lucene/index/LeafReaderContext;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
        start local 1 // org.apache.lucene.index.LeafReaderContext ctx
         0: .line 84
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            aload 1 /* ctx */
            invokevirtual org.apache.lucene.search.DoubleValuesSource.isCacheable:(Lorg/apache/lucene/index/LeafReaderContext;)Z
            ireturn
        end local 1 // org.apache.lucene.index.LeafReaderContext ctx
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    1     1   ctx  Lorg/apache/lucene/index/LeafReaderContext;
    MethodParameters:
      Name  Flags
      ctx   

  public org.apache.lucene.search.Explanation explain(org.apache.lucene.index.LeafReaderContext, int, org.apache.lucene.search.Explanation);
    descriptor: (Lorg/apache/lucene/index/LeafReaderContext;ILorg/apache/lucene/search/Explanation;)Lorg/apache/lucene/search/Explanation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
        start local 1 // org.apache.lucene.index.LeafReaderContext ctx
        start local 2 // int docId
        start local 3 // org.apache.lucene.search.Explanation scoreExplanation
         0: .line 89
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            aload 1 /* ctx */
            iload 2 /* docId */
            aload 3 /* scoreExplanation */
            invokevirtual org.apache.lucene.search.DoubleValuesSource.explain:(Lorg/apache/lucene/index/LeafReaderContext;ILorg/apache/lucene/search/Explanation;)Lorg/apache/lucene/search/Explanation;
            areturn
        end local 3 // org.apache.lucene.search.Explanation scoreExplanation
        end local 2 // int docId
        end local 1 // org.apache.lucene.index.LeafReaderContext ctx
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    1     1               ctx  Lorg/apache/lucene/index/LeafReaderContext;
            0    1     2             docId  I
            0    1     3  scoreExplanation  Lorg/apache/lucene/search/Explanation;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      ctx               
      docId             
      scoreExplanation  

  public org.apache.lucene.search.DoubleValuesSource rewrite(org.apache.lucene.search.IndexSearcher);
    descriptor: (Lorg/apache/lucene/search/IndexSearcher;)Lorg/apache/lucene/search/DoubleValuesSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
        start local 1 // org.apache.lucene.search.IndexSearcher searcher
         0: .line 94
            new org.apache.lucene.spatial.util.CachingDoubleValueSource
            dup
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            aload 1 /* searcher */
            invokevirtual org.apache.lucene.search.DoubleValuesSource.rewrite:(Lorg/apache/lucene/search/IndexSearcher;)Lorg/apache/lucene/search/DoubleValuesSource;
            invokespecial org.apache.lucene.spatial.util.CachingDoubleValueSource.<init>:(Lorg/apache/lucene/search/DoubleValuesSource;)V
            areturn
        end local 1 // org.apache.lucene.search.IndexSearcher searcher
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    1     1  searcher  Lorg/apache/lucene/search/IndexSearcher;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      searcher  

  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.util.CachingDoubleValueSource this
        start local 1 // java.lang.Object o
         0: .line 99
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 100
      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 102
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.apache.lucene.spatial.util.CachingDoubleValueSource
            astore 2 /* that */
        start local 2 // org.apache.lucene.spatial.util.CachingDoubleValueSource that
         4: .line 104
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            ifnull 5
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            aload 2 /* that */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            invokevirtual org.apache.lucene.search.DoubleValuesSource.equals:(Ljava/lang/Object;)Z
            ifne 7
            goto 6
      StackMap locals: org.apache.lucene.spatial.util.CachingDoubleValueSource
      StackMap stack:
         5: aload 2 /* that */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            ifnull 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
         7: .line 106
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.spatial.util.CachingDoubleValueSource that
        end local 1 // java.lang.Object o
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
            0    8     1     o  Ljava/lang/Object;
            4    8     2  that  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
    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.util.CachingDoubleValueSource this
         0: .line 111
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.lucene.spatial.util.CachingDoubleValueSource.source:Lorg/apache/lucene/search/DoubleValuesSource;
            invokevirtual org.apache.lucene.search.DoubleValuesSource.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.lucene.spatial.util.CachingDoubleValueSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/spatial/util/CachingDoubleValueSource;
}
SourceFile: "CachingDoubleValueSource.java"
NestMembers:
  org.apache.lucene.spatial.util.CachingDoubleValueSource$1
InnerClasses:
  org.apache.lucene.spatial.util.CachingDoubleValueSource$1