abstract class org.apache.lucene.document.SortedSetDocValuesRangeQuery extends org.apache.lucene.search.Query
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.lucene.document.SortedSetDocValuesRangeQuery
  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 org.apache.lucene.util.BytesRef lowerValue;
    descriptor: Lorg/apache/lucene/util/BytesRef;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.lucene.util.BytesRef upperValue;
    descriptor: Lorg/apache/lucene/util/BytesRef;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  void <init>(java.lang.String, org.apache.lucene.util.BytesRef, org.apache.lucene.util.BytesRef, boolean, boolean);
    descriptor: (Ljava/lang/String;Lorg/apache/lucene/util/BytesRef;Lorg/apache/lucene/util/BytesRef;ZZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
        start local 1 // java.lang.String field
        start local 2 // org.apache.lucene.util.BytesRef lowerValue
        start local 3 // org.apache.lucene.util.BytesRef upperValue
        start local 4 // boolean lowerInclusive
        start local 5 // boolean upperInclusive
         0: .line 48
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 51
            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.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
         2: .line 52
            aload 0 /* this */
            aload 2 /* lowerValue */
            putfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
         3: .line 53
            aload 0 /* this */
            aload 3 /* upperValue */
            putfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
         4: .line 54
            aload 0 /* this */
            iload 4 /* lowerInclusive */
            ifeq 5
            aload 2 /* lowerValue */
            ifnull 5
            iconst_1
            goto 6
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String org.apache.lucene.util.BytesRef org.apache.lucene.util.BytesRef int int
      StackMap stack: org.apache.lucene.document.SortedSetDocValuesRangeQuery
         5: iconst_0
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String org.apache.lucene.util.BytesRef org.apache.lucene.util.BytesRef int int
      StackMap stack: org.apache.lucene.document.SortedSetDocValuesRangeQuery int
         6: putfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerInclusive:Z
         7: .line 55
            aload 0 /* this */
            iload 5 /* upperInclusive */
            ifeq 8
            aload 3 /* upperValue */
            ifnull 8
            iconst_1
            goto 9
      StackMap locals:
      StackMap stack: org.apache.lucene.document.SortedSetDocValuesRangeQuery
         8: iconst_0
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String org.apache.lucene.util.BytesRef org.apache.lucene.util.BytesRef int int
      StackMap stack: org.apache.lucene.document.SortedSetDocValuesRangeQuery int
         9: putfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperInclusive:Z
        10: .line 56
            return
        end local 5 // boolean upperInclusive
        end local 4 // boolean lowerInclusive
        end local 3 // org.apache.lucene.util.BytesRef upperValue
        end local 2 // org.apache.lucene.util.BytesRef lowerValue
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0            this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            0   11     1           field  Ljava/lang/String;
            0   11     2      lowerValue  Lorg/apache/lucene/util/BytesRef;
            0   11     3      upperValue  Lorg/apache/lucene/util/BytesRef;
            0   11     4  lowerInclusive  Z
            0   11     5  upperInclusive  Z
    MethodParameters:
                Name  Flags
      field           
      lowerValue      
      upperValue      
      lowerInclusive  
      upperInclusive  

  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.SortedSetDocValuesRangeQuery this
        start local 1 // java.lang.Object obj
         0: .line 60
            aload 0 /* this */
            aload 1 /* obj */
            invokevirtual org.apache.lucene.document.SortedSetDocValuesRangeQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 61
            iconst_0
            ireturn
         2: .line 63
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.document.SortedSetDocValuesRangeQuery
            astore 2 /* that */
        start local 2 // org.apache.lucene.document.SortedSetDocValuesRangeQuery that
         3: .line 64
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            aload 2 /* that */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         4: .line 65
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
            aload 2 /* that */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         5: .line 66
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
            aload 2 /* that */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         6: .line 67
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerInclusive:Z
            aload 2 /* that */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerInclusive:Z
            if_icmpne 9
         7: .line 68
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperInclusive:Z
            aload 2 /* that */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperInclusive:Z
            if_icmpne 9
         8: .line 64
            iconst_1
            ireturn
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery
      StackMap stack:
         9: iconst_0
            ireturn
        end local 2 // org.apache.lucene.document.SortedSetDocValuesRangeQuery that
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            0   10     1   obj  Ljava/lang/Object;
            3   10     2  that  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
    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.SortedSetDocValuesRangeQuery this
         0: .line 73
            aload 0 /* this */
            invokevirtual org.apache.lucene.document.SortedSetDocValuesRangeQuery.classHash:()I
            istore 1 /* h */
        start local 1 // int h
         1: .line 74
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* h */
         2: .line 75
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* h */
         3: .line 76
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* h */
         4: .line 77
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerInclusive:Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* h */
         5: .line 78
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperInclusive:Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* h */
         6: .line 79
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            1    7     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.SortedSetDocValuesRangeQuery this
        start local 1 // org.apache.lucene.search.QueryVisitor visitor
         0: .line 84
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            invokevirtual org.apache.lucene.search.QueryVisitor.acceptField:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 85
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.QueryVisitor.visitLeaf:(Lorg/apache/lucene/search/Query;)V
         2: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.lucene.search.QueryVisitor visitor
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            0    3     1  visitor  Lorg/apache/lucene/search/QueryVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public java.lang.String toString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
        start local 1 // java.lang.String field
         0: .line 91
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* b */
        start local 2 // java.lang.StringBuilder b
         1: .line 92
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            aload 1 /* field */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 93
            aload 2 /* b */
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field: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;
            pop
         3: .line 95
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 2 /* b */
         4: .line 96
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerInclusive:Z
            ifeq 5
            ldc "["
            goto 6
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         5: ldc "{"
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder java.lang.String
         6: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 97
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
            ifnonnull 8
            ldc "*"
            goto 9
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         8: aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder java.lang.Comparable
         9: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        10: .line 98
            ldc " TO "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        11: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
            ifnonnull 12
            ldc "*"
            goto 13
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
        12: aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder java.lang.Comparable
        13: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        14: .line 100
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperInclusive:Z
            ifeq 15
            ldc "]"
            goto 16
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
        15: ldc "}"
      StackMap locals: org.apache.lucene.document.SortedSetDocValuesRangeQuery java.lang.String java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder java.lang.String
        16: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        17: .line 101
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        18: .line 95
            areturn
        end local 2 // java.lang.StringBuilder b
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            0   19     1  field  Ljava/lang/String;
            1   19     2      b  Ljava/lang/StringBuilder;
    MethodParameters:
       Name  Flags
      field  

  public org.apache.lucene.search.Query rewrite(org.apache.lucene.index.IndexReader);
    descriptor: (Lorg/apache/lucene/index/IndexReader;)Lorg/apache/lucene/search/Query;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
        start local 1 // org.apache.lucene.index.IndexReader reader
         0: .line 106
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.lowerValue:Lorg/apache/lucene/util/BytesRef;
            ifnonnull 2
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.upperValue:Lorg/apache/lucene/util/BytesRef;
            ifnonnull 2
         1: .line 107
            new org.apache.lucene.search.DocValuesFieldExistsQuery
            dup
            aload 0 /* this */
            getfield org.apache.lucene.document.SortedSetDocValuesRangeQuery.field:Ljava/lang/String;
            invokespecial org.apache.lucene.search.DocValuesFieldExistsQuery.<init>:(Ljava/lang/String;)V
            areturn
         2: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* reader */
            invokespecial org.apache.lucene.search.Query.rewrite:(Lorg/apache/lucene/index/IndexReader;)Lorg/apache/lucene/search/Query;
            areturn
        end local 1 // org.apache.lucene.index.IndexReader reader
        end local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            0    3     1  reader  Lorg/apache/lucene/index/IndexReader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      reader  

  abstract org.apache.lucene.index.SortedSetDocValues getValues(org.apache.lucene.index.LeafReader, java.lang.String);
    descriptor: (Lorg/apache/lucene/index/LeafReader;Ljava/lang/String;)Lorg/apache/lucene/index/SortedSetDocValues;
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      reader  
      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=6, locals=4, args_size=4
        start local 0 // org.apache.lucene.document.SortedSetDocValuesRangeQuery 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 116
            new org.apache.lucene.document.SortedSetDocValuesRangeQuery$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            fload 3 /* boost */
            aload 2 /* scoreMode */
            invokespecial org.apache.lucene.document.SortedSetDocValuesRangeQuery$1.<init>:(Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;Lorg/apache/lucene/search/Query;FLorg/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.SortedSetDocValuesRangeQuery this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/lucene/document/SortedSetDocValuesRangeQuery;
            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: "SortedSetDocValuesRangeQuery.java"
NestMembers:
  org.apache.lucene.document.SortedSetDocValuesRangeQuery$1  org.apache.lucene.document.SortedSetDocValuesRangeQuery$1$1  org.apache.lucene.document.SortedSetDocValuesRangeQuery$1$2
InnerClasses:
  org.apache.lucene.document.SortedSetDocValuesRangeQuery$1