class org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl extends org.apache.lucene.util.AttributeImpl implements org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttribute
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl
  super_class: org.apache.lucene.util.AttributeImpl
{
  private org.apache.lucene.util.automaton.CompiledAutomaton[] automata;
    descriptor: [Lorg/apache/lucene/util/automaton/CompiledAutomaton;
    flags: (0x0002) ACC_PRIVATE

  private int termLength;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
         0: .line 343
            aload 0 /* this */
            invokespecial org.apache.lucene.util.AttributeImpl.<init>:()V
            return
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;

  public org.apache.lucene.util.automaton.CompiledAutomaton[] getAutomata();
    descriptor: ()[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
         0: .line 350
            aload 0 /* this */
            getfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.automata:[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
            areturn
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;

  public int getTermLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
         0: .line 355
            aload 0 /* this */
            getfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.termLength:I
            ireturn
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;

  public void init(java.util.function.Supplier<org.apache.lucene.search.FuzzyAutomatonBuilder>);
    descriptor: (Ljava/util/function/Supplier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
        start local 1 // java.util.function.Supplier supplier
         0: .line 360
            aload 0 /* this */
            getfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.automata:[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
            ifnull 2
         1: .line 361
            return
         2: .line 363
      StackMap locals:
      StackMap stack:
            aload 1 /* supplier */
            invokeinterface java.util.function.Supplier.get:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.FuzzyAutomatonBuilder
            astore 2 /* builder */
        start local 2 // org.apache.lucene.search.FuzzyAutomatonBuilder builder
         3: .line 364
            aload 0 /* this */
            aload 2 /* builder */
            invokevirtual org.apache.lucene.search.FuzzyAutomatonBuilder.getTermLength:()I
            putfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.termLength:I
         4: .line 365
            aload 0 /* this */
            aload 2 /* builder */
            invokevirtual org.apache.lucene.search.FuzzyAutomatonBuilder.buildAutomatonSet:()[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
            putfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.automata:[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
         5: .line 366
            return
        end local 2 // org.apache.lucene.search.FuzzyAutomatonBuilder builder
        end local 1 // java.util.function.Supplier supplier
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;
            0    6     1  supplier  Ljava/util/function/Supplier<Lorg/apache/lucene/search/FuzzyAutomatonBuilder;>;
            3    6     2   builder  Lorg/apache/lucene/search/FuzzyAutomatonBuilder;
    Signature: (Ljava/util/function/Supplier<Lorg/apache/lucene/search/FuzzyAutomatonBuilder;>;)V
    MethodParameters:
          Name  Flags
      supplier  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
         0: .line 370
            aload 0 /* this */
            aconst_null
            putfield org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl.automata:[Lorg/apache/lucene/util/automaton/CompiledAutomaton;
         1: .line 371
            return
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;

  public void reflectWith(org.apache.lucene.util.AttributeReflector);
    descriptor: (Lorg/apache/lucene/util/AttributeReflector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
        start local 1 // org.apache.lucene.util.AttributeReflector reflector
         0: .line 375
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.apache.lucene.util.AttributeReflector reflector
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;
            0    1     1  reflector  Lorg/apache/lucene/util/AttributeReflector;
    MethodParameters:
           Name  Flags
      reflector  

  public void copyTo(org.apache.lucene.util.AttributeImpl);
    descriptor: (Lorg/apache/lucene/util/AttributeImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
        start local 1 // org.apache.lucene.util.AttributeImpl target
         0: .line 380
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // org.apache.lucene.util.AttributeImpl target
        end local 0 // org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/lucene/search/FuzzyTermsEnum$AutomatonAttributeImpl;
            0    1     1  target  Lorg/apache/lucene/util/AttributeImpl;
    MethodParameters:
        Name  Flags
      target  
}
SourceFile: "FuzzyTermsEnum.java"
NestHost: org.apache.lucene.search.FuzzyTermsEnum
InnerClasses:
  private abstract AutomatonAttribute = org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttribute of org.apache.lucene.search.FuzzyTermsEnum
  private AutomatonAttributeImpl = org.apache.lucene.search.FuzzyTermsEnum$AutomatonAttributeImpl of org.apache.lucene.search.FuzzyTermsEnum