public final class jdk.jfr.events.FileReadEvent extends jdk.jfr.events.AbstractJDKEvent
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: jdk.jfr.events.FileReadEvent
  super_class: jdk.jfr.events.AbstractJDKEvent
{
  public static final java.lang.ThreadLocal<jdk.jfr.events.FileReadEvent> EVENT;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Ljdk/jfr/events/FileReadEvent;>;

  public java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    RuntimeVisibleAnnotations: 
      jdk.jfr.Label(value = "Path")
      jdk.jfr.Description(value = "Full path of the file")

  public long bytesRead;
    descriptor: J
    flags: (0x0001) ACC_PUBLIC
    RuntimeVisibleAnnotations: 
      jdk.jfr.Label(value = "Bytes Read")
      jdk.jfr.Description(value = "Number of bytes read from the file (possibly 0)")
      jdk.jfr.DataAmount()

  public boolean endOfFile;
    descriptor: Z
    flags: (0x0001) ACC_PUBLIC
    RuntimeVisibleAnnotations: 
      jdk.jfr.Label(value = "End of File")
      jdk.jfr.Description(value = "If end of file was reached")

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 42
            new jdk.jfr.events.FileReadEvent$1
            dup
            invokespecial jdk.jfr.events.FileReadEvent$1.<init>:()V
         1: .line 41
            putstatic jdk.jfr.events.FileReadEvent.EVENT:Ljava/lang/ThreadLocal;
         2: .line 46
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.jfr.events.FileReadEvent this
         0: .line 39
            aload 0 /* this */
            invokespecial jdk.jfr.events.AbstractJDKEvent.<init>:()V
            return
        end local 0 // jdk.jfr.events.FileReadEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/jfr/events/FileReadEvent;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.jfr.events.FileReadEvent this
         0: .line 62
            aload 0 /* this */
            aconst_null
            putfield jdk.jfr.events.FileReadEvent.path:Ljava/lang/String;
         1: .line 63
            aload 0 /* this */
            iconst_0
            putfield jdk.jfr.events.FileReadEvent.endOfFile:Z
         2: .line 64
            aload 0 /* this */
            lconst_0
            putfield jdk.jfr.events.FileReadEvent.bytesRead:J
         3: .line 65
            return
        end local 0 // jdk.jfr.events.FileReadEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/jfr/events/FileReadEvent;
}
SourceFile: "FileReadEvent.java"
NestMembers:
  jdk.jfr.events.FileReadEvent$1
InnerClasses:
  jdk.jfr.events.FileReadEvent$1
    RuntimeVisibleAnnotations: 
      jdk.jfr.Name(value = "jdk.FileRead")
      jdk.jfr.Label(value = "File Read")
      jdk.jfr.Category(value = {"Java Application"})
      jdk.jfr.Description(value = "Reading data from a file")