public final class org.apache.lucene.document.TextField extends org.apache.lucene.document.Field
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.document.TextField
  super_class: org.apache.lucene.document.Field
{
  public static final org.apache.lucene.document.FieldType TYPE_NOT_STORED;
    descriptor: Lorg/apache/lucene/document/FieldType;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.lucene.document.FieldType TYPE_STORED;
    descriptor: Lorg/apache/lucene/document/FieldType;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 32
            new org.apache.lucene.document.FieldType
            dup
            invokespecial org.apache.lucene.document.FieldType.<init>:()V
            putstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
         1: .line 35
            new org.apache.lucene.document.FieldType
            dup
            invokespecial org.apache.lucene.document.FieldType.<init>:()V
            putstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
         2: .line 38
            getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
            getstatic org.apache.lucene.index.IndexOptions.DOCS_AND_FREQS_AND_POSITIONS:Lorg/apache/lucene/index/IndexOptions;
            invokevirtual org.apache.lucene.document.FieldType.setIndexOptions:(Lorg/apache/lucene/index/IndexOptions;)V
         3: .line 39
            getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
            iconst_1
            invokevirtual org.apache.lucene.document.FieldType.setTokenized:(Z)V
         4: .line 40
            getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
            invokevirtual org.apache.lucene.document.FieldType.freeze:()V
         5: .line 42
            getstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
            getstatic org.apache.lucene.index.IndexOptions.DOCS_AND_FREQS_AND_POSITIONS:Lorg/apache/lucene/index/IndexOptions;
            invokevirtual org.apache.lucene.document.FieldType.setIndexOptions:(Lorg/apache/lucene/index/IndexOptions;)V
         6: .line 43
            getstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
            iconst_1
            invokevirtual org.apache.lucene.document.FieldType.setTokenized:(Z)V
         7: .line 44
            getstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
            iconst_1
            invokevirtual org.apache.lucene.document.FieldType.setStored:(Z)V
         8: .line 45
            getstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
            invokevirtual org.apache.lucene.document.FieldType.freeze:()V
         9: .line 46
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, java.io.Reader);
    descriptor: (Ljava/lang/String;Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.document.TextField this
        start local 1 // java.lang.String name
        start local 2 // java.io.Reader reader
         0: .line 57
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* reader */
            getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
            invokespecial org.apache.lucene.document.Field.<init>:(Ljava/lang/String;Ljava/io/Reader;Lorg/apache/lucene/index/IndexableFieldType;)V
         1: .line 58
            return
        end local 2 // java.io.Reader reader
        end local 1 // java.lang.String name
        end local 0 // org.apache.lucene.document.TextField this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/document/TextField;
            0    2     1    name  Ljava/lang/String;
            0    2     2  reader  Ljava/io/Reader;
    MethodParameters:
        Name  Flags
      name    
      reader  

  public void <init>(java.lang.String, java.lang.String, org.apache.lucene.document.Field$Store);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lorg/apache/lucene/document/Field$Store;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.document.TextField this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
        start local 3 // org.apache.lucene.document.Field$Store store
         0: .line 67
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* value */
            aload 3 /* store */
            getstatic org.apache.lucene.document.Field$Store.YES:Lorg/apache/lucene/document/Field$Store;
            if_acmpne 1
            getstatic org.apache.lucene.document.TextField.TYPE_STORED:Lorg/apache/lucene/document/FieldType;
            goto 2
      StackMap locals: uninitialized-this java.lang.String java.lang.String org.apache.lucene.document.Field$Store
      StackMap stack: uninitialized-this java.lang.String java.lang.String
         1: getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
      StackMap locals: uninitialized-this java.lang.String java.lang.String org.apache.lucene.document.Field$Store
      StackMap stack: uninitialized-this java.lang.String java.lang.String org.apache.lucene.document.FieldType
         2: invokespecial org.apache.lucene.document.Field.<init>:(Ljava/lang/String;Ljava/lang/CharSequence;Lorg/apache/lucene/index/IndexableFieldType;)V
         3: .line 68
            return
        end local 3 // org.apache.lucene.document.Field$Store store
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // org.apache.lucene.document.TextField this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/document/TextField;
            0    4     1   name  Ljava/lang/String;
            0    4     2  value  Ljava/lang/String;
            0    4     3  store  Lorg/apache/lucene/document/Field$Store;
    MethodParameters:
       Name  Flags
      name   
      value  
      store  

  public void <init>(java.lang.String, org.apache.lucene.analysis.TokenStream);
    descriptor: (Ljava/lang/String;Lorg/apache/lucene/analysis/TokenStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.document.TextField this
        start local 1 // java.lang.String name
        start local 2 // org.apache.lucene.analysis.TokenStream stream
         0: .line 77
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* stream */
            getstatic org.apache.lucene.document.TextField.TYPE_NOT_STORED:Lorg/apache/lucene/document/FieldType;
            invokespecial org.apache.lucene.document.Field.<init>:(Ljava/lang/String;Lorg/apache/lucene/analysis/TokenStream;Lorg/apache/lucene/index/IndexableFieldType;)V
         1: .line 78
            return
        end local 2 // org.apache.lucene.analysis.TokenStream stream
        end local 1 // java.lang.String name
        end local 0 // org.apache.lucene.document.TextField this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/lucene/document/TextField;
            0    2     1    name  Ljava/lang/String;
            0    2     2  stream  Lorg/apache/lucene/analysis/TokenStream;
    MethodParameters:
        Name  Flags
      name    
      stream  
}
SourceFile: "TextField.java"
InnerClasses:
  public final Store = org.apache.lucene.document.Field$Store of org.apache.lucene.document.Field