public abstract class org.apache.lucene.search.MultiTermQuery extends org.apache.lucene.search.Query
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.lucene.search.MultiTermQuery
  super_class: org.apache.lucene.search.Query
{
  protected final java.lang.String field;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected org.apache.lucene.search.MultiTermQuery$RewriteMethod rewriteMethod;
    descriptor: Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    flags: (0x0004) ACC_PROTECTED

  public static final org.apache.lucene.search.MultiTermQuery$RewriteMethod CONSTANT_SCORE_REWRITE;
    descriptor: Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.lucene.search.MultiTermQuery$RewriteMethod SCORING_BOOLEAN_REWRITE;
    descriptor: Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.lucene.search.MultiTermQuery$RewriteMethod CONSTANT_SCORE_BOOLEAN_REWRITE;
    descriptor: Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 94
            new org.apache.lucene.search.MultiTermQuery$1
            dup
            invokespecial org.apache.lucene.search.MultiTermQuery$1.<init>:()V
            putstatic org.apache.lucene.search.MultiTermQuery.CONSTANT_SCORE_REWRITE:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
         1: .line 114
            getstatic org.apache.lucene.search.ScoringRewrite.SCORING_BOOLEAN_REWRITE:Lorg/apache/lucene/search/ScoringRewrite;
            putstatic org.apache.lucene.search.MultiTermQuery.SCORING_BOOLEAN_REWRITE:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
         2: .line 126
            getstatic org.apache.lucene.search.ScoringRewrite.CONSTANT_SCORE_BOOLEAN_REWRITE:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            putstatic org.apache.lucene.search.MultiTermQuery.CONSTANT_SCORE_BOOLEAN_REWRITE:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiTermQuery this
        start local 1 // java.lang.String field
         0: .line 275
            aload 0 /* this */
            invokespecial org.apache.lucene.search.Query.<init>:()V
         1: .line 68
            aload 0 /* this */
            getstatic org.apache.lucene.search.MultiTermQuery.CONSTANT_SCORE_REWRITE:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            putfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
         2: .line 276
            aload 0 /* this */
            aload 1 /* field */
            ldc "field must not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield org.apache.lucene.search.MultiTermQuery.field:Ljava/lang/String;
         3: .line 277
            return
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/search/MultiTermQuery;
            0    4     1  field  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      field  final

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

  protected abstract org.apache.lucene.index.TermsEnum getTermsEnum(org.apache.lucene.index.Terms, org.apache.lucene.util.AttributeSource);
    descriptor: (Lorg/apache/lucene/index/Terms;Lorg/apache/lucene/util/AttributeSource;)Lorg/apache/lucene/index/TermsEnum;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      terms  
      atts   

  public final org.apache.lucene.index.TermsEnum getTermsEnum(org.apache.lucene.index.Terms);
    descriptor: (Lorg/apache/lucene/index/Terms;)Lorg/apache/lucene/index/TermsEnum;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiTermQuery this
        start local 1 // org.apache.lucene.index.Terms terms
         0: .line 303
            aload 0 /* this */
            aload 1 /* terms */
            new org.apache.lucene.util.AttributeSource
            dup
            invokespecial org.apache.lucene.util.AttributeSource.<init>:()V
            invokevirtual org.apache.lucene.search.MultiTermQuery.getTermsEnum:(Lorg/apache/lucene/index/Terms;Lorg/apache/lucene/util/AttributeSource;)Lorg/apache/lucene/index/TermsEnum;
            areturn
        end local 1 // org.apache.lucene.index.Terms terms
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/search/MultiTermQuery;
            0    1     1  terms  Lorg/apache/lucene/index/Terms;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      terms  

  public final org.apache.lucene.search.Query rewrite(org.apache.lucene.index.IndexReader);
    descriptor: (Lorg/apache/lucene/index/IndexReader;)Lorg/apache/lucene/search/Query;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiTermQuery this
        start local 1 // org.apache.lucene.index.IndexReader reader
         0: .line 313
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            aload 1 /* reader */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.MultiTermQuery$RewriteMethod.rewrite:(Lorg/apache/lucene/index/IndexReader;Lorg/apache/lucene/search/MultiTermQuery;)Lorg/apache/lucene/search/Query;
            areturn
        end local 1 // org.apache.lucene.index.IndexReader reader
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/lucene/search/MultiTermQuery;
            0    1     1  reader  Lorg/apache/lucene/index/IndexReader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      reader  

  public org.apache.lucene.search.MultiTermQuery$RewriteMethod getRewriteMethod();
    descriptor: ()Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.MultiTermQuery this
         0: .line 320
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            areturn
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/MultiTermQuery;

  public void setRewriteMethod(org.apache.lucene.search.MultiTermQuery$RewriteMethod);
    descriptor: (Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiTermQuery this
        start local 1 // org.apache.lucene.search.MultiTermQuery$RewriteMethod method
         0: .line 328
            aload 0 /* this */
            aload 1 /* method */
            putfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
         1: .line 329
            return
        end local 1 // org.apache.lucene.search.MultiTermQuery$RewriteMethod method
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/search/MultiTermQuery;
            0    2     1  method  Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
    MethodParameters:
        Name  Flags
      method  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.search.MultiTermQuery this
         0: .line 334
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.MultiTermQuery.classHash:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 335
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 336
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* result */
         3: .line 337
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/search/MultiTermQuery;
            1    4     1  result  I

  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.search.MultiTermQuery this
        start local 1 // java.lang.Object other
         0: .line 342
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual org.apache.lucene.search.MultiTermQuery.sameClassAs:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 343
            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.search.MultiTermQuery
            invokevirtual org.apache.lucene.search.MultiTermQuery.equalsTo:(Lorg/apache/lucene/search/MultiTermQuery;)Z
            ifeq 3
         2: .line 342
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/search/MultiTermQuery;
            0    4     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  private boolean equalsTo(org.apache.lucene.search.MultiTermQuery);
    descriptor: (Lorg/apache/lucene/search/MultiTermQuery;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.MultiTermQuery this
        start local 1 // org.apache.lucene.search.MultiTermQuery other
         0: .line 347
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            aload 1 /* other */
            getfield org.apache.lucene.search.MultiTermQuery.rewriteMethod:Lorg/apache/lucene/search/MultiTermQuery$RewriteMethod;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 348
            aload 0 /* this */
            getfield org.apache.lucene.search.MultiTermQuery.field:Ljava/lang/String;
            aload 1 /* other */
            getfield org.apache.lucene.search.MultiTermQuery.field:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 347
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // org.apache.lucene.search.MultiTermQuery other
        end local 0 // org.apache.lucene.search.MultiTermQuery this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/search/MultiTermQuery;
            0    4     1  other  Lorg/apache/lucene/search/MultiTermQuery;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "MultiTermQuery.java"
NestMembers:
  org.apache.lucene.search.MultiTermQuery$1  org.apache.lucene.search.MultiTermQuery$RewriteMethod  org.apache.lucene.search.MultiTermQuery$TopTermsBlendedFreqScoringRewrite  org.apache.lucene.search.MultiTermQuery$TopTermsBoostOnlyBooleanQueryRewrite  org.apache.lucene.search.MultiTermQuery$TopTermsScoringBooleanQueryRewrite
InnerClasses:
  org.apache.lucene.search.MultiTermQuery$1
  public abstract RewriteMethod = org.apache.lucene.search.MultiTermQuery$RewriteMethod of org.apache.lucene.search.MultiTermQuery
  public final TopTermsBlendedFreqScoringRewrite = org.apache.lucene.search.MultiTermQuery$TopTermsBlendedFreqScoringRewrite of org.apache.lucene.search.MultiTermQuery
  public final TopTermsBoostOnlyBooleanQueryRewrite = org.apache.lucene.search.MultiTermQuery$TopTermsBoostOnlyBooleanQueryRewrite of org.apache.lucene.search.MultiTermQuery
  public final TopTermsScoringBooleanQueryRewrite = org.apache.lucene.search.MultiTermQuery$TopTermsScoringBooleanQueryRewrite of org.apache.lucene.search.MultiTermQuery