public class org.apache.lucene.search.spell.DirectSpellChecker
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.search.spell.DirectSpellChecker
  super_class: java.lang.Object
{
  public static final org.apache.lucene.search.spell.StringDistance INTERNAL_LEVENSHTEIN;
    descriptor: Lorg/apache/lucene/search/spell/StringDistance;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

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

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

  private float accuracy;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float thresholdFrequency;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

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

  private float maxQueryFrequency;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

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

  private java.util.Comparator<org.apache.lucene.search.spell.SuggestWord> comparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Comparator<Lorg/apache/lucene/search/spell/SuggestWord;>;

  private org.apache.lucene.search.spell.StringDistance distance;
    descriptor: Lorg/apache/lucene/search/spell/StringDistance;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 63
            new org.apache.lucene.search.spell.LuceneLevenshteinDistance
            dup
            invokespecial org.apache.lucene.search.spell.LuceneLevenshteinDistance.<init>:()V
            putstatic org.apache.lucene.search.spell.DirectSpellChecker.INTERNAL_LEVENSHTEIN:Lorg/apache/lucene/search/spell/StringDistance;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 66
            aload 0 /* this */
            iconst_2
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxEdits:I
         2: .line 68
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.search.spell.DirectSpellChecker.minPrefix:I
         3: .line 70
            aload 0 /* this */
            iconst_5
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxInspections:I
         4: .line 72
            aload 0 /* this */
            ldc 0.5
            putfield org.apache.lucene.search.spell.DirectSpellChecker.accuracy:F
         5: .line 75
            aload 0 /* this */
            fconst_0
            putfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
         6: .line 77
            aload 0 /* this */
            iconst_4
            putfield org.apache.lucene.search.spell.DirectSpellChecker.minQueryLength:I
         7: .line 81
            aload 0 /* this */
            ldc 0.01
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
         8: .line 83
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.search.spell.DirectSpellChecker.lowerCaseTerms:Z
         9: .line 85
            aload 0 /* this */
            getstatic org.apache.lucene.search.spell.SuggestWordQueue.DEFAULT_COMPARATOR:Ljava/util/Comparator;
            putfield org.apache.lucene.search.spell.DirectSpellChecker.comparator:Ljava/util/Comparator;
        10: .line 87
            aload 0 /* this */
            getstatic org.apache.lucene.search.spell.DirectSpellChecker.INTERNAL_LEVENSHTEIN:Lorg/apache/lucene/search/spell/StringDistance;
            putfield org.apache.lucene.search.spell.DirectSpellChecker.distance:Lorg/apache/lucene/search/spell/StringDistance;
        11: .line 90
            return
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public int getMaxEdits();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 95
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxEdits:I
            ireturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setMaxEdits(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // int maxEdits
         0: .line 106
            iload 1 /* maxEdits */
            iconst_1
            if_icmplt 1
            iload 1 /* maxEdits */
            iconst_2
            if_icmple 2
         1: .line 107
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "Invalid maxEdits"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* maxEdits */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxEdits:I
         3: .line 109
            return
        end local 1 // int maxEdits
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    4     1  maxEdits  I
    MethodParameters:
          Name  Flags
      maxEdits  

  public int getMinPrefix();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 115
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.minPrefix:I
            ireturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setMinPrefix(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // int minPrefix
         0: .line 126
            aload 0 /* this */
            iload 1 /* minPrefix */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.minPrefix:I
         1: .line 127
            return
        end local 1 // int minPrefix
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  minPrefix  I
    MethodParameters:
           Name  Flags
      minPrefix  

  public int getMaxInspections();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 133
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxInspections:I
            ireturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setMaxInspections(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // int maxInspections
         0: .line 143
            aload 0 /* this */
            iload 1 /* maxInspections */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxInspections:I
         1: .line 144
            return
        end local 1 // int maxInspections
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  maxInspections  I
    MethodParameters:
                Name  Flags
      maxInspections  

  public float getAccuracy();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 150
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.accuracy:F
            freturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setAccuracy(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // float accuracy
         0: .line 158
            aload 0 /* this */
            fload 1 /* accuracy */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.accuracy:F
         1: .line 159
            return
        end local 1 // float accuracy
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  accuracy  F
    MethodParameters:
          Name  Flags
      accuracy  

  public float getThresholdFrequency();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 165
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
            freturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setThresholdFrequency(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // float thresholdFrequency
         0: .line 181
            fload 1 /* thresholdFrequency */
            fconst_1
            fcmpl
            iflt 2
            fload 1 /* thresholdFrequency */
            fload 1 /* thresholdFrequency */
            f2i
            i2f
            fcmpl
            ifeq 2
         1: .line 182
            new java.lang.IllegalArgumentException
            dup
            ldc "Fractional absolute document frequencies are not allowed"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* thresholdFrequency */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
         3: .line 184
            return
        end local 1 // float thresholdFrequency
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    4     1  thresholdFrequency  F
    MethodParameters:
                    Name  Flags
      thresholdFrequency  

  public int getMinQueryLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 188
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.minQueryLength:I
            ireturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setMinQueryLength(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // int minQueryLength
         0: .line 198
            aload 0 /* this */
            iload 1 /* minQueryLength */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.minQueryLength:I
         1: .line 199
            return
        end local 1 // int minQueryLength
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  minQueryLength  I
    MethodParameters:
                Name  Flags
      minQueryLength  

  public float getMaxQueryFrequency();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 206
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
            freturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setMaxQueryFrequency(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // float maxQueryFrequency
         0: .line 222
            fload 1 /* maxQueryFrequency */
            fconst_1
            fcmpl
            iflt 2
            fload 1 /* maxQueryFrequency */
            fload 1 /* maxQueryFrequency */
            f2i
            i2f
            fcmpl
            ifeq 2
         1: .line 223
            new java.lang.IllegalArgumentException
            dup
            ldc "Fractional absolute document frequencies are not allowed"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* maxQueryFrequency */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
         3: .line 225
            return
        end local 1 // float maxQueryFrequency
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    4     1  maxQueryFrequency  F
    MethodParameters:
                   Name  Flags
      maxQueryFrequency  

  public boolean getLowerCaseTerms();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 229
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.lowerCaseTerms:Z
            ireturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setLowerCaseTerms(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // boolean lowerCaseTerms
         0: .line 243
            aload 0 /* this */
            iload 1 /* lowerCaseTerms */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.lowerCaseTerms:Z
         1: .line 244
            return
        end local 1 // boolean lowerCaseTerms
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  lowerCaseTerms  Z
    MethodParameters:
                Name  Flags
      lowerCaseTerms  

  public java.util.Comparator<org.apache.lucene.search.spell.SuggestWord> getComparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 250
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.comparator:Ljava/util/Comparator;
            areturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
    Signature: ()Ljava/util/Comparator<Lorg/apache/lucene/search/spell/SuggestWord;>;

  public void setComparator(java.util.Comparator<org.apache.lucene.search.spell.SuggestWord>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // java.util.Comparator comparator
         0: .line 258
            aload 0 /* this */
            aload 1 /* comparator */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.comparator:Ljava/util/Comparator;
         1: .line 259
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  comparator  Ljava/util/Comparator<Lorg/apache/lucene/search/spell/SuggestWord;>;
    Signature: (Ljava/util/Comparator<Lorg/apache/lucene/search/spell/SuggestWord;>;)V
    MethodParameters:
            Name  Flags
      comparator  

  public org.apache.lucene.search.spell.StringDistance getDistance();
    descriptor: ()Lorg/apache/lucene/search/spell/StringDistance;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
         0: .line 265
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.distance:Lorg/apache/lucene/search/spell/StringDistance;
            areturn
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/spell/DirectSpellChecker;

  public void setDistance(org.apache.lucene.search.spell.StringDistance);
    descriptor: (Lorg/apache/lucene/search/spell/StringDistance;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // org.apache.lucene.search.spell.StringDistance distance
         0: .line 279
            aload 0 /* this */
            aload 1 /* distance */
            putfield org.apache.lucene.search.spell.DirectSpellChecker.distance:Lorg/apache/lucene/search/spell/StringDistance;
         1: .line 280
            return
        end local 1 // org.apache.lucene.search.spell.StringDistance distance
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    2     1  distance  Lorg/apache/lucene/search/spell/StringDistance;
    MethodParameters:
          Name  Flags
      distance  

  public org.apache.lucene.search.spell.SuggestWord[] suggestSimilar(org.apache.lucene.index.Term, int, org.apache.lucene.index.IndexReader);
    descriptor: (Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;)[Lorg/apache/lucene/search/spell/SuggestWord;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // org.apache.lucene.index.Term term
        start local 2 // int numSug
        start local 3 // org.apache.lucene.index.IndexReader ir
         0: .line 288
            aload 0 /* this */
            aload 1 /* term */
            iload 2 /* numSug */
            aload 3 /* ir */
            getstatic org.apache.lucene.search.spell.SuggestMode.SUGGEST_WHEN_NOT_IN_INDEX:Lorg/apache/lucene/search/spell/SuggestMode;
            invokevirtual org.apache.lucene.search.spell.DirectSpellChecker.suggestSimilar:(Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;Lorg/apache/lucene/search/spell/SuggestMode;)[Lorg/apache/lucene/search/spell/SuggestWord;
            areturn
        end local 3 // org.apache.lucene.index.IndexReader ir
        end local 2 // int numSug
        end local 1 // org.apache.lucene.index.Term term
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    1     1    term  Lorg/apache/lucene/index/Term;
            0    1     2  numSug  I
            0    1     3      ir  Lorg/apache/lucene/index/IndexReader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      term    
      numSug  
      ir      

  public org.apache.lucene.search.spell.SuggestWord[] suggestSimilar(org.apache.lucene.index.Term, int, org.apache.lucene.index.IndexReader, org.apache.lucene.search.spell.SuggestMode);
    descriptor: (Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;Lorg/apache/lucene/search/spell/SuggestMode;)[Lorg/apache/lucene/search/spell/SuggestWord;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // org.apache.lucene.index.Term term
        start local 2 // int numSug
        start local 3 // org.apache.lucene.index.IndexReader ir
        start local 4 // org.apache.lucene.search.spell.SuggestMode suggestMode
         0: .line 298
            aload 0 /* this */
            aload 1 /* term */
            iload 2 /* numSug */
            aload 3 /* ir */
            aload 4 /* suggestMode */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.accuracy:F
            invokevirtual org.apache.lucene.search.spell.DirectSpellChecker.suggestSimilar:(Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;Lorg/apache/lucene/search/spell/SuggestMode;F)[Lorg/apache/lucene/search/spell/SuggestWord;
            areturn
        end local 4 // org.apache.lucene.search.spell.SuggestMode suggestMode
        end local 3 // org.apache.lucene.index.IndexReader ir
        end local 2 // int numSug
        end local 1 // org.apache.lucene.index.Term term
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0    1     1         term  Lorg/apache/lucene/index/Term;
            0    1     2       numSug  I
            0    1     3           ir  Lorg/apache/lucene/index/IndexReader;
            0    1     4  suggestMode  Lorg/apache/lucene/search/spell/SuggestMode;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      term         
      numSug       
      ir           
      suggestMode  

  public org.apache.lucene.search.spell.SuggestWord[] suggestSimilar(org.apache.lucene.index.Term, int, org.apache.lucene.index.IndexReader, org.apache.lucene.search.spell.SuggestMode, float);
    descriptor: (Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;Lorg/apache/lucene/search/spell/SuggestMode;F)[Lorg/apache/lucene/search/spell/SuggestWord;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=17, args_size=6
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // org.apache.lucene.index.Term term
        start local 2 // int numSug
        start local 3 // org.apache.lucene.index.IndexReader ir
        start local 4 // org.apache.lucene.search.spell.SuggestMode suggestMode
        start local 5 // float accuracy
         0: .line 318
            new org.apache.lucene.util.CharsRefBuilder
            dup
            invokespecial org.apache.lucene.util.CharsRefBuilder.<init>:()V
            astore 6 /* spare */
        start local 6 // org.apache.lucene.util.CharsRefBuilder spare
         1: .line 319
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.Term.text:()Ljava/lang/String;
            astore 7 /* text */
        start local 7 // java.lang.String text
         2: .line 320
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.minQueryLength:I
            ifle 4
            aload 7 /* text */
            iconst_0
            aload 7 /* text */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.codePointCount:(II)I
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.minQueryLength:I
            if_icmpge 4
         3: .line 321
            iconst_0
            anewarray org.apache.lucene.search.spell.SuggestWord
            areturn
         4: .line 323
      StackMap locals: org.apache.lucene.util.CharsRefBuilder java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.lowerCaseTerms:Z
            ifeq 6
         5: .line 324
            new org.apache.lucene.index.Term
            dup
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.Term.field:()Ljava/lang/String;
            aload 7 /* text */
            getstatic java.util.Locale.ROOT:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            invokespecial org.apache.lucene.index.Term.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 1 /* term */
         6: .line 327
      StackMap locals:
      StackMap stack:
            aload 3 /* ir */
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.IndexReader.docFreq:(Lorg/apache/lucene/index/Term;)I
            istore 8 /* docfreq */
        start local 8 // int docfreq
         7: .line 329
            aload 4 /* suggestMode */
            getstatic org.apache.lucene.search.spell.SuggestMode.SUGGEST_WHEN_NOT_IN_INDEX:Lorg/apache/lucene/search/spell/SuggestMode;
            if_acmpne 9
            iload 8 /* docfreq */
            ifle 9
         8: .line 330
            iconst_0
            anewarray org.apache.lucene.search.spell.SuggestWord
            areturn
         9: .line 333
      StackMap locals: int
      StackMap stack:
            aload 3 /* ir */
            invokevirtual org.apache.lucene.index.IndexReader.maxDoc:()I
            istore 9 /* maxDoc */
        start local 9 // int maxDoc
        10: .line 335
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
            fconst_1
            fcmpl
            iflt 12
            iload 8 /* docfreq */
            i2f
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
            fcmpl
            ifle 12
        11: .line 336
            iconst_0
            anewarray org.apache.lucene.search.spell.SuggestWord
            areturn
        12: .line 337
      StackMap locals: int
      StackMap stack:
            iload 8 /* docfreq */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxQueryFrequency:F
            iload 9 /* maxDoc */
            i2f
            fmul
            f2d
            invokestatic java.lang.Math.ceil:(D)D
            d2i
            if_icmple 14
        13: .line 338
            iconst_0
            anewarray org.apache.lucene.search.spell.SuggestWord
            areturn
        14: .line 341
      StackMap locals:
      StackMap stack:
            aload 4 /* suggestMode */
            getstatic org.apache.lucene.search.spell.SuggestMode.SUGGEST_MORE_POPULAR:Lorg/apache/lucene/search/spell/SuggestMode;
            if_acmpeq 15
            iconst_0
            istore 8 /* docfreq */
        15: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
            fconst_1
            fcmpl
            iflt 18
        16: .line 344
            iload 8 /* docfreq */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
            f2i
            invokestatic java.lang.Math.max:(II)I
            istore 8 /* docfreq */
        17: .line 345
            goto 20
      StackMap locals:
      StackMap stack:
        18: aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
            fconst_0
            fcmpl
            ifle 20
        19: .line 346
            iload 8 /* docfreq */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.thresholdFrequency:F
            iload 9 /* maxDoc */
            i2f
            fmul
            f2i
            iconst_1
            isub
            invokestatic java.lang.Math.max:(II)I
            istore 8 /* docfreq */
        20: .line 349
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 10 /* terms */
        start local 10 // java.util.Collection terms
        21: .line 350
            iload 2 /* numSug */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxInspections:I
            imul
            istore 11 /* inspections */
        start local 11 // int inspections
        22: .line 353
            aload 0 /* this */
            aload 1 /* term */
            iload 11 /* inspections */
            aload 3 /* ir */
            iload 8 /* docfreq */
            iconst_1
            fload 5 /* accuracy */
            aload 6 /* spare */
            invokevirtual org.apache.lucene.search.spell.DirectSpellChecker.suggestSimilar:(Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;IIFLorg/apache/lucene/util/CharsRefBuilder;)Ljava/util/Collection;
            astore 10 /* terms */
        23: .line 354
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxEdits:I
            iconst_1
            if_icmple 28
            aload 10 /* terms */
            invokeinterface java.util.Collection.size:()I
            iload 11 /* inspections */
            if_icmpge 28
        24: .line 355
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 12 /* moreTerms */
        start local 12 // java.util.HashSet moreTerms
        25: .line 356
            aload 12 /* moreTerms */
            aload 10 /* terms */
            invokevirtual java.util.HashSet.addAll:(Ljava/util/Collection;)Z
            pop
        26: .line 357
            aload 12 /* moreTerms */
            aload 0 /* this */
            aload 1 /* term */
            iload 11 /* inspections */
            aload 3 /* ir */
            iload 8 /* docfreq */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.maxEdits:I
            fload 5 /* accuracy */
            aload 6 /* spare */
            invokevirtual org.apache.lucene.search.spell.DirectSpellChecker.suggestSimilar:(Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;IIFLorg/apache/lucene/util/CharsRefBuilder;)Ljava/util/Collection;
            invokevirtual java.util.HashSet.addAll:(Ljava/util/Collection;)Z
            pop
        27: .line 358
            aload 12 /* moreTerms */
            astore 10 /* terms */
        end local 12 // java.util.HashSet moreTerms
        28: .line 363
      StackMap locals: java.util.Collection int
      StackMap stack:
            aload 10 /* terms */
            invokeinterface java.util.Collection.size:()I
            anewarray org.apache.lucene.search.spell.SuggestWord
            astore 12 /* suggestions */
        start local 12 // org.apache.lucene.search.spell.SuggestWord[] suggestions
        29: .line 364
            aload 12 /* suggestions */
            arraylength
            iconst_1
            isub
            istore 13 /* index */
        start local 13 // int index
        30: .line 365
            aload 10 /* terms */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 15
            goto 40
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader org.apache.lucene.search.spell.SuggestMode float org.apache.lucene.util.CharsRefBuilder java.lang.String int int java.util.Collection int org.apache.lucene.search.spell.SuggestWord[] int top java.util.Iterator
      StackMap stack:
        31: aload 15
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            astore 14 /* s */
        start local 14 // org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm s
        32: .line 366
            new org.apache.lucene.search.spell.SuggestWord
            dup
            invokespecial org.apache.lucene.search.spell.SuggestWord.<init>:()V
            astore 16 /* suggestion */
        start local 16 // org.apache.lucene.search.spell.SuggestWord suggestion
        33: .line 367
            aload 14 /* s */
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.termAsString:Ljava/lang/String;
            ifnonnull 36
        34: .line 368
            aload 6 /* spare */
            aload 14 /* s */
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.term:Lorg/apache/lucene/util/BytesRef;
            invokevirtual org.apache.lucene.util.CharsRefBuilder.copyUTF8Bytes:(Lorg/apache/lucene/util/BytesRef;)V
        35: .line 369
            aload 14 /* s */
            aload 6 /* spare */
            invokevirtual org.apache.lucene.util.CharsRefBuilder.toString:()Ljava/lang/String;
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.termAsString:Ljava/lang/String;
        36: .line 371
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader org.apache.lucene.search.spell.SuggestMode float org.apache.lucene.util.CharsRefBuilder java.lang.String int int java.util.Collection int org.apache.lucene.search.spell.SuggestWord[] int org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm java.util.Iterator org.apache.lucene.search.spell.SuggestWord
      StackMap stack:
            aload 16 /* suggestion */
            aload 14 /* s */
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.termAsString:Ljava/lang/String;
            putfield org.apache.lucene.search.spell.SuggestWord.string:Ljava/lang/String;
        37: .line 372
            aload 16 /* suggestion */
            aload 14 /* s */
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.score:F
            putfield org.apache.lucene.search.spell.SuggestWord.score:F
        38: .line 373
            aload 16 /* suggestion */
            aload 14 /* s */
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.docfreq:I
            putfield org.apache.lucene.search.spell.SuggestWord.freq:I
        39: .line 374
            aload 12 /* suggestions */
            iload 13 /* index */
            iinc 13 /* index */ -1
            aload 16 /* suggestion */
            aastore
        end local 16 // org.apache.lucene.search.spell.SuggestWord suggestion
        end local 14 // org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm s
        40: .line 365
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader org.apache.lucene.search.spell.SuggestMode float org.apache.lucene.util.CharsRefBuilder java.lang.String int int java.util.Collection int org.apache.lucene.search.spell.SuggestWord[] int top java.util.Iterator
      StackMap stack:
            aload 15
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 31
        41: .line 377
            aload 12 /* suggestions */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.comparator:Ljava/util/Comparator;
            invokestatic java.util.Collections.reverseOrder:(Ljava/util/Comparator;)Ljava/util/Comparator;
            invokestatic org.apache.lucene.util.ArrayUtil.timSort:([Ljava/lang/Object;Ljava/util/Comparator;)V
        42: .line 378
            iload 2 /* numSug */
            aload 12 /* suggestions */
            arraylength
            if_icmpge 46
        43: .line 379
            iload 2 /* numSug */
            anewarray org.apache.lucene.search.spell.SuggestWord
            astore 14 /* trimmed */
        start local 14 // org.apache.lucene.search.spell.SuggestWord[] trimmed
        44: .line 380
            aload 12 /* suggestions */
            iconst_0
            aload 14 /* trimmed */
            iconst_0
            iload 2 /* numSug */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        45: .line 381
            aload 14 /* trimmed */
            astore 12 /* suggestions */
        end local 14 // org.apache.lucene.search.spell.SuggestWord[] trimmed
        46: .line 383
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader org.apache.lucene.search.spell.SuggestMode float org.apache.lucene.util.CharsRefBuilder java.lang.String int int java.util.Collection int org.apache.lucene.search.spell.SuggestWord[] int
      StackMap stack:
            aload 12 /* suggestions */
            areturn
        end local 13 // int index
        end local 12 // org.apache.lucene.search.spell.SuggestWord[] suggestions
        end local 11 // int inspections
        end local 10 // java.util.Collection terms
        end local 9 // int maxDoc
        end local 8 // int docfreq
        end local 7 // java.lang.String text
        end local 6 // org.apache.lucene.util.CharsRefBuilder spare
        end local 5 // float accuracy
        end local 4 // org.apache.lucene.search.spell.SuggestMode suggestMode
        end local 3 // org.apache.lucene.index.IndexReader ir
        end local 2 // int numSug
        end local 1 // org.apache.lucene.index.Term term
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   47     0         this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0   47     1         term  Lorg/apache/lucene/index/Term;
            0   47     2       numSug  I
            0   47     3           ir  Lorg/apache/lucene/index/IndexReader;
            0   47     4  suggestMode  Lorg/apache/lucene/search/spell/SuggestMode;
            0   47     5     accuracy  F
            1   47     6        spare  Lorg/apache/lucene/util/CharsRefBuilder;
            2   47     7         text  Ljava/lang/String;
            7   47     8      docfreq  I
           10   47     9       maxDoc  I
           21   47    10        terms  Ljava/util/Collection<Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;>;
           22   47    11  inspections  I
           25   28    12    moreTerms  Ljava/util/HashSet<Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;>;
           29   47    12  suggestions  [Lorg/apache/lucene/search/spell/SuggestWord;
           30   47    13        index  I
           32   40    14            s  Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;
           33   40    16   suggestion  Lorg/apache/lucene/search/spell/SuggestWord;
           44   46    14      trimmed  [Lorg/apache/lucene/search/spell/SuggestWord;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      term         
      numSug       
      ir           
      suggestMode  
      accuracy     

  protected java.util.Collection<org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm> suggestSimilar(org.apache.lucene.index.Term, int, org.apache.lucene.index.IndexReader, int, int, float, org.apache.lucene.util.CharsRefBuilder);
    descriptor: (Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;IIFLorg/apache/lucene/util/CharsRefBuilder;)Ljava/util/Collection;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=20, args_size=8
        start local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
        start local 1 // org.apache.lucene.index.Term term
        start local 2 // int numSug
        start local 3 // org.apache.lucene.index.IndexReader ir
        start local 4 // int docfreq
        start local 5 // int editDistance
        start local 6 // float accuracy
        start local 7 // org.apache.lucene.util.CharsRefBuilder spare
         0: .line 402
            new org.apache.lucene.util.AttributeSource
            dup
            invokespecial org.apache.lucene.util.AttributeSource.<init>:()V
            astore 8 /* atts */
        start local 8 // org.apache.lucene.util.AttributeSource atts
         1: .line 404
            aload 8 /* atts */
            ldc Lorg/apache/lucene/search/MaxNonCompetitiveBoostAttribute;
            invokevirtual org.apache.lucene.util.AttributeSource.addAttribute:(Ljava/lang/Class;)Lorg/apache/lucene/util/Attribute;
            checkcast org.apache.lucene.search.MaxNonCompetitiveBoostAttribute
         2: .line 403
            astore 9 /* maxBoostAtt */
        start local 9 // org.apache.lucene.search.MaxNonCompetitiveBoostAttribute maxBoostAtt
         3: .line 405
            aload 3 /* ir */
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.Term.field:()Ljava/lang/String;
            invokestatic org.apache.lucene.index.MultiTerms.getTerms:(Lorg/apache/lucene/index/IndexReader;Ljava/lang/String;)Lorg/apache/lucene/index/Terms;
            astore 10 /* terms */
        start local 10 // org.apache.lucene.index.Terms terms
         4: .line 406
            aload 10 /* terms */
            ifnonnull 6
         5: .line 407
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
         6: .line 409
      StackMap locals: org.apache.lucene.util.AttributeSource org.apache.lucene.search.MaxNonCompetitiveBoostAttribute org.apache.lucene.index.Terms
      StackMap stack:
            new org.apache.lucene.search.FuzzyTermsEnum
            dup
            aload 10 /* terms */
            aload 8 /* atts */
            aload 1 /* term */
            iload 5 /* editDistance */
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.minPrefix:I
            iload 5 /* editDistance */
            iconst_1
            isub
            invokestatic java.lang.Math.max:(II)I
            iconst_1
            invokespecial org.apache.lucene.search.FuzzyTermsEnum.<init>:(Lorg/apache/lucene/index/Terms;Lorg/apache/lucene/util/AttributeSource;Lorg/apache/lucene/index/Term;IIZ)V
            astore 11 /* e */
        start local 11 // org.apache.lucene.search.FuzzyTermsEnum e
         7: .line 410
            new java.util.PriorityQueue
            dup
            invokespecial java.util.PriorityQueue.<init>:()V
            astore 12 /* stQueue */
        start local 12 // java.util.PriorityQueue stQueue
         8: .line 412
            new org.apache.lucene.util.BytesRef
            dup
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.Term.text:()Ljava/lang/String;
            invokespecial org.apache.lucene.util.BytesRef.<init>:(Ljava/lang/CharSequence;)V
            astore 13 /* queryTerm */
        start local 13 // org.apache.lucene.util.BytesRef queryTerm
         9: .line 414
            new org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            dup
            invokespecial org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.<init>:()V
            astore 15 /* st */
        start local 15 // org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm st
        10: .line 416
            aload 11 /* e */
            invokevirtual org.apache.lucene.search.FuzzyTermsEnum.attributes:()Lorg/apache/lucene/util/AttributeSource;
            ldc Lorg/apache/lucene/search/BoostAttribute;
            invokevirtual org.apache.lucene.util.AttributeSource.addAttribute:(Ljava/lang/Class;)Lorg/apache/lucene/util/Attribute;
            checkcast org.apache.lucene.search.BoostAttribute
        11: .line 415
            astore 16 /* boostAtt */
        start local 16 // org.apache.lucene.search.BoostAttribute boostAtt
        12: .line 417
            goto 41
        start local 14 // org.apache.lucene.util.BytesRef candidateTerm
        13: .line 419
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader int int float org.apache.lucene.util.CharsRefBuilder org.apache.lucene.util.AttributeSource org.apache.lucene.search.MaxNonCompetitiveBoostAttribute org.apache.lucene.index.Terms org.apache.lucene.search.FuzzyTermsEnum java.util.PriorityQueue org.apache.lucene.util.BytesRef org.apache.lucene.util.BytesRef org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm org.apache.lucene.search.BoostAttribute
      StackMap stack:
            aload 16 /* boostAtt */
            invokeinterface org.apache.lucene.search.BoostAttribute.getBoost:()F
            fstore 17 /* score */
        start local 17 // float score
        14: .line 421
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.size:()I
            iload 2 /* numSug */
            if_icmplt 16
            fload 17 /* score */
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.peek:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.boost:F
            fcmpg
            ifgt 16
        15: .line 422
            goto 41
        16: .line 426
      StackMap locals: float
      StackMap stack:
            aload 13 /* queryTerm */
            aload 14 /* candidateTerm */
            invokevirtual org.apache.lucene.util.BytesRef.bytesEquals:(Lorg/apache/lucene/util/BytesRef;)Z
            ifeq 18
        17: .line 427
            goto 41
        18: .line 430
      StackMap locals:
      StackMap stack:
            aload 11 /* e */
            invokevirtual org.apache.lucene.search.FuzzyTermsEnum.docFreq:()I
            istore 18 /* df */
        start local 18 // int df
        19: .line 433
            iload 18 /* df */
            iload 4 /* docfreq */
            if_icmpgt 21
        20: .line 434
            goto 41
        21: .line 438
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.distance:Lorg/apache/lucene/search/spell/StringDistance;
            getstatic org.apache.lucene.search.spell.DirectSpellChecker.INTERNAL_LEVENSHTEIN:Lorg/apache/lucene/search/spell/StringDistance;
            if_acmpne 24
        22: .line 440
            aconst_null
            astore 19 /* termAsString */
        start local 19 // java.lang.String termAsString
        23: .line 441
            goto 27
        end local 19 // java.lang.String termAsString
        24: .line 442
      StackMap locals:
      StackMap stack:
            aload 7 /* spare */
            aload 14 /* candidateTerm */
            invokevirtual org.apache.lucene.util.CharsRefBuilder.copyUTF8Bytes:(Lorg/apache/lucene/util/BytesRef;)V
        25: .line 443
            aload 7 /* spare */
            invokevirtual org.apache.lucene.util.CharsRefBuilder.toString:()Ljava/lang/String;
            astore 19 /* termAsString */
        start local 19 // java.lang.String termAsString
        26: .line 444
            aload 0 /* this */
            getfield org.apache.lucene.search.spell.DirectSpellChecker.distance:Lorg/apache/lucene/search/spell/StringDistance;
            aload 1 /* term */
            invokevirtual org.apache.lucene.index.Term.text:()Ljava/lang/String;
            aload 19 /* termAsString */
            invokeinterface org.apache.lucene.search.spell.StringDistance.getDistance:(Ljava/lang/String;Ljava/lang/String;)F
            fstore 17 /* score */
        27: .line 447
      StackMap locals: java.lang.String
      StackMap stack:
            fload 17 /* score */
            fload 6 /* accuracy */
            fcmpg
            ifge 29
        28: .line 448
            goto 41
        29: .line 452
      StackMap locals:
      StackMap stack:
            aload 15 /* st */
            aload 14 /* candidateTerm */
            invokestatic org.apache.lucene.util.BytesRef.deepCopyOf:(Lorg/apache/lucene/util/BytesRef;)Lorg/apache/lucene/util/BytesRef;
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.term:Lorg/apache/lucene/util/BytesRef;
        30: .line 453
            aload 15 /* st */
            fload 17 /* score */
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.boost:F
        31: .line 454
            aload 15 /* st */
            iload 18 /* df */
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.docfreq:I
        32: .line 455
            aload 15 /* st */
            aload 19 /* termAsString */
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.termAsString:Ljava/lang/String;
        33: .line 456
            aload 15 /* st */
            fload 17 /* score */
            putfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.score:F
        34: .line 457
            aload 12 /* stQueue */
            aload 15 /* st */
            invokevirtual java.util.PriorityQueue.offer:(Ljava/lang/Object;)Z
            pop
        35: .line 459
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.size:()I
            iload 2 /* numSug */
            if_icmple 36
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.poll:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            goto 37
      StackMap locals:
      StackMap stack:
        36: new org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            dup
            invokespecial org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.<init>:()V
      StackMap locals:
      StackMap stack: org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
        37: astore 15 /* st */
        38: .line 460
            aload 9 /* maxBoostAtt */
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.size:()I
            iload 2 /* numSug */
            if_icmplt 39
            aload 12 /* stQueue */
            invokevirtual java.util.PriorityQueue.peek:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
            getfield org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm.boost:F
            goto 40
      StackMap locals:
      StackMap stack: org.apache.lucene.search.MaxNonCompetitiveBoostAttribute
        39: ldc -Infinity
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader int int float org.apache.lucene.util.CharsRefBuilder org.apache.lucene.util.AttributeSource org.apache.lucene.search.MaxNonCompetitiveBoostAttribute org.apache.lucene.index.Terms org.apache.lucene.search.FuzzyTermsEnum java.util.PriorityQueue org.apache.lucene.util.BytesRef org.apache.lucene.util.BytesRef org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm org.apache.lucene.search.BoostAttribute float int java.lang.String
      StackMap stack: org.apache.lucene.search.MaxNonCompetitiveBoostAttribute float
        40: invokeinterface org.apache.lucene.search.MaxNonCompetitiveBoostAttribute.setMaxNonCompetitiveBoost:(F)V
        end local 19 // java.lang.String termAsString
        end local 18 // int df
        end local 17 // float score
        end local 14 // org.apache.lucene.util.BytesRef candidateTerm
        41: .line 417
      StackMap locals: org.apache.lucene.search.spell.DirectSpellChecker org.apache.lucene.index.Term int org.apache.lucene.index.IndexReader int int float org.apache.lucene.util.CharsRefBuilder org.apache.lucene.util.AttributeSource org.apache.lucene.search.MaxNonCompetitiveBoostAttribute org.apache.lucene.index.Terms org.apache.lucene.search.FuzzyTermsEnum java.util.PriorityQueue org.apache.lucene.util.BytesRef top org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm org.apache.lucene.search.BoostAttribute
      StackMap stack:
            aload 11 /* e */
            invokevirtual org.apache.lucene.search.FuzzyTermsEnum.next:()Lorg/apache/lucene/util/BytesRef;
            dup
            astore 14 /* candidateTerm */
        start local 14 // org.apache.lucene.util.BytesRef candidateTerm
        42: ifnonnull 13
        43: .line 463
            aload 12 /* stQueue */
            areturn
        end local 16 // org.apache.lucene.search.BoostAttribute boostAtt
        end local 15 // org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm st
        end local 14 // org.apache.lucene.util.BytesRef candidateTerm
        end local 13 // org.apache.lucene.util.BytesRef queryTerm
        end local 12 // java.util.PriorityQueue stQueue
        end local 11 // org.apache.lucene.search.FuzzyTermsEnum e
        end local 10 // org.apache.lucene.index.Terms terms
        end local 9 // org.apache.lucene.search.MaxNonCompetitiveBoostAttribute maxBoostAtt
        end local 8 // org.apache.lucene.util.AttributeSource atts
        end local 7 // org.apache.lucene.util.CharsRefBuilder spare
        end local 6 // float accuracy
        end local 5 // int editDistance
        end local 4 // int docfreq
        end local 3 // org.apache.lucene.index.IndexReader ir
        end local 2 // int numSug
        end local 1 // org.apache.lucene.index.Term term
        end local 0 // org.apache.lucene.search.spell.DirectSpellChecker this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   44     0           this  Lorg/apache/lucene/search/spell/DirectSpellChecker;
            0   44     1           term  Lorg/apache/lucene/index/Term;
            0   44     2         numSug  I
            0   44     3             ir  Lorg/apache/lucene/index/IndexReader;
            0   44     4        docfreq  I
            0   44     5   editDistance  I
            0   44     6       accuracy  F
            0   44     7          spare  Lorg/apache/lucene/util/CharsRefBuilder;
            1   44     8           atts  Lorg/apache/lucene/util/AttributeSource;
            3   44     9    maxBoostAtt  Lorg/apache/lucene/search/MaxNonCompetitiveBoostAttribute;
            4   44    10          terms  Lorg/apache/lucene/index/Terms;
            7   44    11              e  Lorg/apache/lucene/search/FuzzyTermsEnum;
            8   44    12        stQueue  Ljava/util/PriorityQueue<Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;>;
            9   44    13      queryTerm  Lorg/apache/lucene/util/BytesRef;
           13   41    14  candidateTerm  Lorg/apache/lucene/util/BytesRef;
           42   44    14  candidateTerm  Lorg/apache/lucene/util/BytesRef;
           10   44    15             st  Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;
           12   44    16       boostAtt  Lorg/apache/lucene/search/BoostAttribute;
           14   41    17          score  F
           19   41    18             df  I
           23   24    19   termAsString  Ljava/lang/String;
           26   41    19   termAsString  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    Signature: (Lorg/apache/lucene/index/Term;ILorg/apache/lucene/index/IndexReader;IIFLorg/apache/lucene/util/CharsRefBuilder;)Ljava/util/Collection<Lorg/apache/lucene/search/spell/DirectSpellChecker$ScoreTerm;>;
    MethodParameters:
              Name  Flags
      term          
      numSug        
      ir            
      docfreq       
      editDistance  
      accuracy      
      spare         final
}
SourceFile: "DirectSpellChecker.java"
NestMembers:
  org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm
InnerClasses:
  protected ScoreTerm = org.apache.lucene.search.spell.DirectSpellChecker$ScoreTerm of org.apache.lucene.search.spell.DirectSpellChecker