public final class org.apache.lucene.index.MultiFields extends org.apache.lucene.index.Fields
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.index.MultiFields
  super_class: org.apache.lucene.index.Fields
{
  private final org.apache.lucene.index.Fields[] subs;
    descriptor: [Lorg/apache/lucene/index/Fields;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.lucene.index.ReaderSlice[] subSlices;
    descriptor: [Lorg/apache/lucene/index/ReaderSlice;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.String, org.apache.lucene.index.Terms> terms;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Lorg/apache/lucene/index/Terms;>;

  public void <init>(org.apache.lucene.index.Fields[], org.apache.lucene.index.ReaderSlice[]);
    descriptor: ([Lorg/apache/lucene/index/Fields;[Lorg/apache/lucene/index/ReaderSlice;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.index.MultiFields this
        start local 1 // org.apache.lucene.index.Fields[] subs
        start local 2 // org.apache.lucene.index.ReaderSlice[] subSlices
         0: .line 53
            aload 0 /* this */
            invokespecial org.apache.lucene.index.Fields.<init>:()V
         1: .line 48
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield org.apache.lucene.index.MultiFields.terms:Ljava/util/Map;
         2: .line 54
            aload 0 /* this */
            aload 1 /* subs */
            putfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
         3: .line 55
            aload 0 /* this */
            aload 2 /* subSlices */
            putfield org.apache.lucene.index.MultiFields.subSlices:[Lorg/apache/lucene/index/ReaderSlice;
         4: .line 56
            return
        end local 2 // org.apache.lucene.index.ReaderSlice[] subSlices
        end local 1 // org.apache.lucene.index.Fields[] subs
        end local 0 // org.apache.lucene.index.MultiFields this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/lucene/index/MultiFields;
            0    5     1       subs  [Lorg/apache/lucene/index/Fields;
            0    5     2  subSlices  [Lorg/apache/lucene/index/ReaderSlice;
    MethodParameters:
           Name  Flags
      subs       
      subSlices  

  public java.util.Iterator<java.lang.String> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.lucene.index.MultiFields this
         0: .line 61
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
            arraylength
            anewarray java.util.Iterator
            astore 1 /* subIterators */
        start local 1 // java.util.Iterator[] subIterators
         1: .line 62
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 63
      StackMap locals: java.util.Iterator[] int
      StackMap stack:
            aload 1 /* subIterators */
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
            iload 2 /* i */
            aaload
            invokevirtual org.apache.lucene.index.Fields.iterator:()Ljava/util/Iterator;
            aastore
         4: .line 62
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 65
            new org.apache.lucene.util.MergedIterator
            dup
            aload 1 /* subIterators */
            invokespecial org.apache.lucene.util.MergedIterator.<init>:([Ljava/util/Iterator;)V
            areturn
        end local 1 // java.util.Iterator[] subIterators
        end local 0 // org.apache.lucene.index.MultiFields this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lorg/apache/lucene/index/MultiFields;
            1    7     1  subIterators  [Ljava/util/Iterator;
            2    6     2             i  I
    Signature: ()Ljava/util/Iterator<Ljava/lang/String;>;

  public org.apache.lucene.index.Terms terms(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/lucene/index/Terms;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.apache.lucene.index.MultiFields this
        start local 1 // java.lang.String field
         0: .line 70
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.terms:Ljava/util/Map;
            aload 1 /* field */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.index.Terms
            astore 2 /* result */
        start local 2 // org.apache.lucene.index.Terms result
         1: .line 71
            aload 2 /* result */
            ifnull 3
         2: .line 72
            aload 2 /* result */
            areturn
         3: .line 77
      StackMap locals: org.apache.lucene.index.Terms
      StackMap stack:
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* subs2 */
        start local 3 // java.util.List subs2
         4: .line 78
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* slices2 */
        start local 4 // java.util.List slices2
         5: .line 81
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 12
         7: .line 82
      StackMap locals: java.util.List java.util.List int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
            iload 5 /* i */
            aaload
            aload 1 /* field */
            invokevirtual org.apache.lucene.index.Fields.terms:(Ljava/lang/String;)Lorg/apache/lucene/index/Terms;
            astore 6 /* terms */
        start local 6 // org.apache.lucene.index.Terms terms
         8: .line 83
            aload 6 /* terms */
            ifnull 11
         9: .line 84
            aload 3 /* subs2 */
            aload 6 /* terms */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        10: .line 85
            aload 4 /* slices2 */
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subSlices:[Lorg/apache/lucene/index/ReaderSlice;
            iload 5 /* i */
            aaload
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 6 // org.apache.lucene.index.Terms terms
        11: .line 81
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.subs:[Lorg/apache/lucene/index/Fields;
            arraylength
            if_icmplt 7
        end local 5 // int i
        13: .line 88
            aload 3 /* subs2 */
            invokeinterface java.util.List.size:()I
            ifne 16
        14: .line 89
            aconst_null
            astore 2 /* result */
        15: .line 92
            goto 20
        16: .line 93
      StackMap locals:
      StackMap stack:
            new org.apache.lucene.index.MultiTerms
            dup
            aload 3 /* subs2 */
            getstatic org.apache.lucene.index.Terms.EMPTY_ARRAY:[Lorg/apache/lucene/index/Terms;
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.apache.lucene.index.Terms[]
        17: .line 94
            aload 4 /* slices2 */
            getstatic org.apache.lucene.index.ReaderSlice.EMPTY_ARRAY:[Lorg/apache/lucene/index/ReaderSlice;
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.apache.lucene.index.ReaderSlice[]
        18: .line 93
            invokespecial org.apache.lucene.index.MultiTerms.<init>:([Lorg/apache/lucene/index/Terms;[Lorg/apache/lucene/index/ReaderSlice;)V
            astore 2 /* result */
        19: .line 95
            aload 0 /* this */
            getfield org.apache.lucene.index.MultiFields.terms:Ljava/util/Map;
            aload 1 /* field */
            aload 2 /* result */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        20: .line 98
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 4 // java.util.List slices2
        end local 3 // java.util.List subs2
        end local 2 // org.apache.lucene.index.Terms result
        end local 1 // java.lang.String field
        end local 0 // org.apache.lucene.index.MultiFields this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   21     0     this  Lorg/apache/lucene/index/MultiFields;
            0   21     1    field  Ljava/lang/String;
            1   21     2   result  Lorg/apache/lucene/index/Terms;
            4   21     3    subs2  Ljava/util/List<Lorg/apache/lucene/index/Terms;>;
            5   21     4  slices2  Ljava/util/List<Lorg/apache/lucene/index/ReaderSlice;>;
            6   13     5        i  I
            8   11     6    terms  Lorg/apache/lucene/index/Terms;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      field  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.MultiFields this
         0: .line 103
            iconst_m1
            ireturn
        end local 0 // org.apache.lucene.index.MultiFields this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/index/MultiFields;
}
SourceFile: "MultiFields.java"