public class org.apache.lucene.index.AutomatonTermsEnum extends org.apache.lucene.index.FilteredTermsEnum
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.index.AutomatonTermsEnum
  super_class: org.apache.lucene.index.FilteredTermsEnum
{
  private final org.apache.lucene.util.automaton.ByteRunAutomaton runAutomaton;
    descriptor: Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  private final short[] visited;
    descriptor: [S
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private short curGen;
    descriptor: S
    flags: (0x0002) ACC_PRIVATE

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

  private boolean linear;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

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

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 50
            ldc Lorg/apache/lucene/index/AutomatonTermsEnum;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.index.AutomatonTermsEnum.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.apache.lucene.index.TermsEnum, org.apache.lucene.util.automaton.CompiledAutomaton);
    descriptor: (Lorg/apache/lucene/index/TermsEnum;Lorg/apache/lucene/util/automaton/CompiledAutomaton;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // org.apache.lucene.index.TermsEnum tenum
        start local 2 // org.apache.lucene.util.automaton.CompiledAutomaton compiled
         0: .line 82
            aload 0 /* this */
            aload 1 /* tenum */
            invokespecial org.apache.lucene.index.FilteredTermsEnum.<init>:(Lorg/apache/lucene/index/TermsEnum;)V
         1: .line 64
            aload 0 /* this */
            new org.apache.lucene.util.BytesRefBuilder
            dup
            invokespecial org.apache.lucene.util.BytesRefBuilder.<init>:()V
            putfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
         2: .line 70
            aload 0 /* this */
            new org.apache.lucene.util.BytesRef
            dup
            invokespecial org.apache.lucene.util.BytesRef.<init>:()V
            putfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
         3: .line 71
            aload 0 /* this */
            new org.apache.lucene.util.automaton.Transition
            dup
            invokespecial org.apache.lucene.util.automaton.Transition.<init>:()V
            putfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
         4: .line 72
            aload 0 /* this */
            new org.apache.lucene.util.IntsRefBuilder
            dup
            invokespecial org.apache.lucene.util.IntsRefBuilder.<init>:()V
            putfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
         5: .line 83
            aload 2 /* compiled */
            getfield org.apache.lucene.util.automaton.CompiledAutomaton.type:Lorg/apache/lucene/util/automaton/CompiledAutomaton$AUTOMATON_TYPE;
            getstatic org.apache.lucene.util.automaton.CompiledAutomaton$AUTOMATON_TYPE.NORMAL:Lorg/apache/lucene/util/automaton/CompiledAutomaton$AUTOMATON_TYPE;
            if_acmpeq 7
         6: .line 84
            new java.lang.IllegalArgumentException
            dup
            ldc "please use CompiledAutomaton.getTermsEnum instead"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 86
      StackMap locals: org.apache.lucene.index.AutomatonTermsEnum org.apache.lucene.index.TermsEnum org.apache.lucene.util.automaton.CompiledAutomaton
      StackMap stack:
            aload 0 /* this */
            aload 2 /* compiled */
            getfield org.apache.lucene.util.automaton.CompiledAutomaton.finite:Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
         8: .line 87
            aload 0 /* this */
            aload 2 /* compiled */
            getfield org.apache.lucene.util.automaton.CompiledAutomaton.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            putfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
         9: .line 88
            getstatic org.apache.lucene.index.AutomatonTermsEnum.$assertionsDisabled:Z
            ifne 10
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            ifnonnull 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* compiled */
            getfield org.apache.lucene.util.automaton.CompiledAutomaton.commonSuffixRef:Lorg/apache/lucene/util/BytesRef;
            putfield org.apache.lucene.index.AutomatonTermsEnum.commonSuffixRef:Lorg/apache/lucene/util/BytesRef;
        11: .line 90
            aload 0 /* this */
            aload 2 /* compiled */
            getfield org.apache.lucene.util.automaton.CompiledAutomaton.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            putfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
        12: .line 93
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
            ifeq 13
            aconst_null
            goto 14
      StackMap locals:
      StackMap stack: org.apache.lucene.index.AutomatonTermsEnum
        13: aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.getSize:()I
            newarray 9
      StackMap locals: org.apache.lucene.index.AutomatonTermsEnum org.apache.lucene.index.TermsEnum org.apache.lucene.util.automaton.CompiledAutomaton
      StackMap stack: org.apache.lucene.index.AutomatonTermsEnum short[]
        14: putfield org.apache.lucene.index.AutomatonTermsEnum.visited:[S
        15: .line 94
            return
        end local 2 // org.apache.lucene.util.automaton.CompiledAutomaton compiled
        end local 1 // org.apache.lucene.index.TermsEnum tenum
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0   16     1     tenum  Lorg/apache/lucene/index/TermsEnum;
            0   16     2  compiled  Lorg/apache/lucene/util/automaton/CompiledAutomaton;
    MethodParameters:
          Name  Flags
      tenum     
      compiled  

  private void setVisited(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // int state
         0: .line 100
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
            ifne 2
         1: .line 101
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.visited:[S
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.curGen:S
            sastore
         2: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int state
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0    3     1  state  I
    MethodParameters:
       Name  Flags
      state  

  private boolean isVisited(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // int state
         0: .line 109
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.visited:[S
            iload 1 /* state */
            saload
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.curGen:S
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int state
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0    2     1  state  I
    MethodParameters:
       Name  Flags
      state  

  protected org.apache.lucene.index.FilteredTermsEnum$AcceptStatus accept(org.apache.lucene.util.BytesRef);
    descriptor: (Lorg/apache/lucene/util/BytesRef;)Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // org.apache.lucene.util.BytesRef term
         0: .line 118
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.commonSuffixRef:Lorg/apache/lucene/util/BytesRef;
            ifnull 1
            aload 1 /* term */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.commonSuffixRef:Lorg/apache/lucene/util/BytesRef;
            invokestatic org.apache.lucene.util.StringHelper.endsWith:(Lorg/apache/lucene/util/BytesRef;Lorg/apache/lucene/util/BytesRef;)Z
            ifeq 9
         1: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            aload 1 /* term */
            getfield org.apache.lucene.util.BytesRef.bytes:[B
            aload 1 /* term */
            getfield org.apache.lucene.util.BytesRef.offset:I
            aload 1 /* term */
            getfield org.apache.lucene.util.BytesRef.length:I
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.run:([BII)Z
            ifeq 5
         2: .line 120
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifeq 3
            getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.YES:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
            goto 4
      StackMap locals:
      StackMap stack:
         3: getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.YES_AND_SEEK:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
      StackMap locals:
      StackMap stack: org.apache.lucene.index.FilteredTermsEnum$AcceptStatus
         4: areturn
         5: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifeq 7
            aload 1 /* term */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            invokevirtual org.apache.lucene.util.BytesRef.compareTo:(Lorg/apache/lucene/util/BytesRef;)I
            ifge 7
         6: .line 123
            getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.NO:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
            goto 8
      StackMap locals:
      StackMap stack:
         7: getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.NO_AND_SEEK:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
         8: .line 122
      StackMap locals:
      StackMap stack: org.apache.lucene.index.FilteredTermsEnum$AcceptStatus
            areturn
         9: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifeq 11
            aload 1 /* term */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            invokevirtual org.apache.lucene.util.BytesRef.compareTo:(Lorg/apache/lucene/util/BytesRef;)I
            ifge 11
        10: .line 126
            getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.NO:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
            goto 12
      StackMap locals:
      StackMap stack:
        11: getstatic org.apache.lucene.index.FilteredTermsEnum$AcceptStatus.NO_AND_SEEK:Lorg/apache/lucene/index/FilteredTermsEnum$AcceptStatus;
        12: .line 125
      StackMap locals:
      StackMap stack: org.apache.lucene.index.FilteredTermsEnum$AcceptStatus
            areturn
        end local 1 // org.apache.lucene.util.BytesRef term
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0   13     1  term  Lorg/apache/lucene/util/BytesRef;
    MethodParameters:
      Name  Flags
      term  final

  protected org.apache.lucene.util.BytesRef nextSeekTerm(org.apache.lucene.util.BytesRef);
    descriptor: (Lorg/apache/lucene/util/BytesRef;)Lorg/apache/lucene/util/BytesRef;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // org.apache.lucene.util.BytesRef term
         0: .line 133
            aload 1 /* term */
            ifnonnull 4
         1: .line 134
            getstatic org.apache.lucene.index.AutomatonTermsEnum.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            ifeq 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            iconst_0
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.isAccept:(I)Z
            ifeq 5
         3: .line 137
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.get:()Lorg/apache/lucene/util/BytesRef;
            areturn
         4: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            aload 1 /* term */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.copyBytes:(Lorg/apache/lucene/util/BytesRef;)V
         5: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.nextString:()Z
            ifeq 7
         6: .line 145
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.get:()Lorg/apache/lucene/util/BytesRef;
            areturn
         7: .line 147
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // org.apache.lucene.util.BytesRef term
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0    8     1  term  Lorg/apache/lucene/util/BytesRef;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      term  final

  private void setLinear(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // int position
         0: .line 157
            getstatic org.apache.lucene.index.AutomatonTermsEnum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 159
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* state */
        start local 2 // int state
         2: .line 160
            sipush 255
            istore 3 /* maxInterval */
        start local 3 // int maxInterval
         3: .line 162
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 8
         5: .line 163
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            iload 2 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 4 /* i */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.step:(II)I
            istore 2 /* state */
         6: .line 164
            getstatic org.apache.lucene.index.AutomatonTermsEnum.$assertionsDisabled:Z
            ifne 7
            iload 2 /* state */
            ifge 7
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "state="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* state */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 162
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            iload 1 /* position */
            if_icmplt 5
        end local 4 // int i
         9: .line 166
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            iload 2 /* state */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumTransitions:(I)I
            istore 4 /* numTransitions */
        start local 4 // int numTransitions
        10: .line 167
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            iload 2 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.initTransition:(ILorg/apache/lucene/util/automaton/Transition;)I
            pop
        11: .line 168
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        12: goto 19
        13: .line 169
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNextTransition:(Lorg/apache/lucene/util/automaton/Transition;)V
        14: .line 170
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.min:I
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 1 /* position */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            if_icmpgt 18
        15: .line 171
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 1 /* position */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.max:I
            if_icmpgt 18
        16: .line 172
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.max:I
            istore 3 /* maxInterval */
        17: .line 173
            goto 20
        18: .line 168
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* i */
            iload 4 /* numTransitions */
            if_icmplt 13
        end local 5 // int i
        20: .line 177
      StackMap locals:
      StackMap stack:
            iload 3 /* maxInterval */
            sipush 255
            if_icmpeq 22
        21: .line 178
            iinc 3 /* maxInterval */ 1
        22: .line 179
      StackMap locals:
      StackMap stack:
            iload 1 /* position */
            iconst_1
            iadd
            istore 5 /* length */
        start local 5 // int length
        23: .line 180
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            getfield org.apache.lucene.util.BytesRef.bytes:[B
            arraylength
            iload 5 /* length */
            if_icmpge 25
        24: .line 181
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            iload 5 /* length */
            iconst_1
            invokestatic org.apache.lucene.util.ArrayUtil.oversize:(II)I
            newarray 8
            putfield org.apache.lucene.util.BytesRef.bytes:[B
        25: .line 183
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.bytes:()[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            getfield org.apache.lucene.util.BytesRef.bytes:[B
            iconst_0
            iload 1 /* position */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 184
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            getfield org.apache.lucene.util.BytesRef.bytes:[B
            iload 1 /* position */
            iload 3 /* maxInterval */
            i2b
            bastore
        27: .line 185
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linearUpperBound:Lorg/apache/lucene/util/BytesRef;
            iload 5 /* length */
            putfield org.apache.lucene.util.BytesRef.length:I
        28: .line 187
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
        29: .line 188
            return
        end local 5 // int length
        end local 4 // int numTransitions
        end local 3 // int maxInterval
        end local 2 // int state
        end local 1 // int position
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   30     0            this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0   30     1        position  I
            2   30     2           state  I
            3   30     3     maxInterval  I
            4    9     4               i  I
           10   30     4  numTransitions  I
           12   20     5               i  I
           23   30     5          length  I
    MethodParameters:
          Name  Flags
      position  

  private boolean nextString();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
         0: .line 202
            iconst_0
            istore 2 /* pos */
        start local 2 // int pos
         1: .line 203
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            iconst_1
            iadd
            invokevirtual org.apache.lucene.util.IntsRefBuilder.grow:(I)V
         2: .line 204
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
            iconst_0
            iconst_0
            invokevirtual org.apache.lucene.util.IntsRefBuilder.setIntAt:(II)V
         3: .line 207
      StackMap locals: org.apache.lucene.index.AutomatonTermsEnum top int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
            ifne 5
            aload 0 /* this */
            dup
            getfield org.apache.lucene.index.AutomatonTermsEnum.curGen:S
            iconst_1
            iadd
            i2s
            dup_x1
            putfield org.apache.lucene.index.AutomatonTermsEnum.curGen:S
            ifne 5
         4: .line 209
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.visited:[S
            iconst_m1
            invokestatic java.util.Arrays.fill:([SS)V
         5: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
         6: .line 213
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
            iload 2 /* pos */
            invokevirtual org.apache.lucene.util.IntsRefBuilder.intAt:(I)I
            istore 1 /* state */
        start local 1 // int state
         7: goto 17
         8: .line 214
      StackMap locals: org.apache.lucene.index.AutomatonTermsEnum int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.setVisited:(I)V
         9: .line 215
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 2 /* pos */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.step:(II)I
            istore 3 /* nextState */
        start local 3 // int nextState
        10: .line 216
            iload 3 /* nextState */
            iconst_m1
            if_icmpne 12
        11: .line 217
            goto 18
        12: .line 218
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
            iload 2 /* pos */
            iconst_1
            iadd
            iload 3 /* nextState */
            invokevirtual org.apache.lucene.util.IntsRefBuilder.setIntAt:(II)V
        13: .line 220
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifne 15
            aload 0 /* this */
            iload 3 /* nextState */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.isVisited:(I)Z
            ifeq 15
        14: .line 221
            aload 0 /* this */
            iload 2 /* pos */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.setLinear:(I)V
        15: .line 223
      StackMap locals:
      StackMap stack:
            iload 3 /* nextState */
            istore 1 /* state */
        end local 3 // int nextState
        16: .line 213
            iinc 2 /* pos */ 1
      StackMap locals:
      StackMap stack:
        17: iload 2 /* pos */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            if_icmplt 8
        18: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* state */
            iload 2 /* pos */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.nextString:(II)Z
            ifeq 20
        19: .line 229
            iconst_1
            ireturn
        20: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* pos */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.backtrack:(I)I
            dup
            istore 2 /* pos */
            ifge 22
        21: .line 232
            iconst_0
            ireturn
        22: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.savedStates:Lorg/apache/lucene/util/IntsRefBuilder;
            iload 2 /* pos */
            invokevirtual org.apache.lucene.util.IntsRefBuilder.intAt:(I)I
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 2 /* pos */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.step:(II)I
            istore 3 /* newState */
        start local 3 // int newState
        23: .line 234
            iload 3 /* newState */
            iflt 25
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            iload 3 /* newState */
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.isAccept:(I)Z
            ifeq 25
        24: .line 236
            iconst_1
            ireturn
        25: .line 240
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.finite:Z
            ifne 3
            iconst_0
            istore 2 /* pos */
        end local 3 // int newState
        end local 1 // int state
        26: .line 206
            goto 3
        end local 2 // int pos
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   27     0       this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            7   26     1      state  I
            1   27     2        pos  I
           10   16     3  nextState  I
           23   26     3   newState  I

  private boolean nextString(int, int);
    descriptor: (II)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // int state
        start local 2 // int position
         0: .line 268
            iconst_0
            istore 3 /* c */
        start local 3 // int c
         1: .line 269
            iload 2 /* position */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            if_icmpge 5
         2: .line 270
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 2 /* position */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            istore 3 /* c */
         3: .line 274
            iload 3 /* c */
            iinc 3 /* c */ 1
            sipush 255
            if_icmpne 5
         4: .line 275
            iconst_0
            ireturn
         5: .line 278
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 2 /* position */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.setLength:(I)V
         6: .line 279
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.setVisited:(I)V
         7: .line 281
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            iload 1 /* state */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumTransitions:(I)I
            istore 4 /* numTransitions */
        start local 4 // int numTransitions
         8: .line 282
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.initTransition:(ILorg/apache/lucene/util/automaton/Transition;)I
            pop
         9: .line 285
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 29
        11: .line 286
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNextTransition:(Lorg/apache/lucene/util/automaton/Transition;)V
        12: .line 287
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.max:I
            iload 3 /* c */
            if_icmplt 28
        13: .line 288
            iload 3 /* c */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.min:I
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* nextChar */
        start local 6 // int nextChar
        14: .line 290
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            iconst_1
            iadd
            invokevirtual org.apache.lucene.util.BytesRefBuilder.grow:(I)V
        15: .line 291
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 6 /* nextChar */
            i2b
            invokevirtual org.apache.lucene.util.BytesRefBuilder.append:(B)V
        16: .line 292
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            istore 1 /* state */
        17: .line 297
            goto 26
        18: .line 298
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.setVisited:(I)V
        19: .line 304
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.initTransition:(ILorg/apache/lucene/util/automaton/Transition;)I
            pop
        20: .line 305
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNextTransition:(Lorg/apache/lucene/util/automaton/Transition;)V
        21: .line 306
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.dest:I
            istore 1 /* state */
        22: .line 309
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            iconst_1
            iadd
            invokevirtual org.apache.lucene.util.BytesRefBuilder.grow:(I)V
        23: .line 310
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.transition:Lorg/apache/lucene/util/automaton/Transition;
            getfield org.apache.lucene.util.automaton.Transition.min:I
            i2b
            invokevirtual org.apache.lucene.util.BytesRefBuilder.append:(B)V
        24: .line 313
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.linear:Z
            ifne 26
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.isVisited:(I)Z
            ifeq 26
        25: .line 314
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            iconst_1
            isub
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.setLinear:(I)V
        26: .line 297
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* state */
            invokevirtual org.apache.lucene.index.AutomatonTermsEnum.isVisited:(I)Z
            ifne 27
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.runAutomaton:Lorg/apache/lucene/util/automaton/ByteRunAutomaton;
            iload 1 /* state */
            invokevirtual org.apache.lucene.util.automaton.ByteRunAutomaton.isAccept:(I)Z
            ifeq 18
        27: .line 317
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // int nextChar
        28: .line 285
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        29: iload 5 /* i */
            iload 4 /* numTransitions */
            if_icmplt 11
        end local 5 // int i
        30: .line 320
            iconst_0
            ireturn
        end local 4 // int numTransitions
        end local 3 // int c
        end local 2 // int position
        end local 1 // int state
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   31     0            this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0   31     1           state  I
            0   31     2        position  I
            1   31     3               c  I
            8   31     4  numTransitions  I
           10   30     5               i  I
           14   28     6        nextChar  I
    MethodParameters:
          Name  Flags
      state     
      position  

  private int backtrack(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.index.AutomatonTermsEnum this
        start local 1 // int position
         0: .line 332
            goto 6
         1: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 1 /* position */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.byteAt:(I)B
            sipush 255
            iand
            istore 2 /* nextChar */
        start local 2 // int nextChar
         2: .line 336
            iload 2 /* nextChar */
            iinc 2 /* nextChar */ 1
            sipush 255
            if_icmpeq 6
         3: .line 337
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 1 /* position */
            iload 2 /* nextChar */
            i2b
            invokevirtual org.apache.lucene.util.BytesRefBuilder.setByteAt:(IB)V
         4: .line 338
            aload 0 /* this */
            getfield org.apache.lucene.index.AutomatonTermsEnum.seekBytesRef:Lorg/apache/lucene/util/BytesRefBuilder;
            iload 1 /* position */
            iconst_1
            iadd
            invokevirtual org.apache.lucene.util.BytesRefBuilder.setLength:(I)V
         5: .line 339
            iload 1 /* position */
            ireturn
        end local 2 // int nextChar
         6: .line 332
      StackMap locals:
      StackMap stack:
            iload 1 /* position */
            iinc 1 /* position */ -1
            ifgt 1
         7: .line 342
            iconst_m1
            ireturn
        end local 1 // int position
        end local 0 // org.apache.lucene.index.AutomatonTermsEnum this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/lucene/index/AutomatonTermsEnum;
            0    8     1  position  I
            2    6     2  nextChar  I
    MethodParameters:
          Name  Flags
      position  
}
SourceFile: "AutomatonTermsEnum.java"
InnerClasses:
  protected final AcceptStatus = org.apache.lucene.index.FilteredTermsEnum$AcceptStatus of org.apache.lucene.index.FilteredTermsEnum
  public final AUTOMATON_TYPE = org.apache.lucene.util.automaton.CompiledAutomaton$AUTOMATON_TYPE of org.apache.lucene.util.automaton.CompiledAutomaton