public class io.vertx.core.file.impl.FilePropsImpl implements io.vertx.core.file.FileProps
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.file.impl.FilePropsImpl
  super_class: java.lang.Object
{
  private final long creationTime;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long lastAccessTime;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long lastModifiedTime;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  private final long size;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.nio.file.attribute.BasicFileAttributes);
    descriptor: (Ljava/nio/file/attribute/BasicFileAttributes;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
        start local 1 // java.nio.file.attribute.BasicFileAttributes attrs
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.creationTime:()Ljava/nio/file/attribute/FileTime;
            invokevirtual java.nio.file.attribute.FileTime.toMillis:()J
            putfield io.vertx.core.file.impl.FilePropsImpl.creationTime:J
         2: .line 32
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.lastModifiedTime:()Ljava/nio/file/attribute/FileTime;
            invokevirtual java.nio.file.attribute.FileTime.toMillis:()J
            putfield io.vertx.core.file.impl.FilePropsImpl.lastModifiedTime:J
         3: .line 33
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.lastAccessTime:()Ljava/nio/file/attribute/FileTime;
            invokevirtual java.nio.file.attribute.FileTime.toMillis:()J
            putfield io.vertx.core.file.impl.FilePropsImpl.lastAccessTime:J
         4: .line 34
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.isDirectory:()Z
            putfield io.vertx.core.file.impl.FilePropsImpl.isDirectory:Z
         5: .line 35
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.isOther:()Z
            putfield io.vertx.core.file.impl.FilePropsImpl.isOther:Z
         6: .line 36
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.isRegularFile:()Z
            putfield io.vertx.core.file.impl.FilePropsImpl.isRegularFile:Z
         7: .line 37
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.isSymbolicLink:()Z
            putfield io.vertx.core.file.impl.FilePropsImpl.isSymbolicLink:Z
         8: .line 38
            aload 0 /* this */
            aload 1 /* attrs */
            invokeinterface java.nio.file.attribute.BasicFileAttributes.size:()J
            putfield io.vertx.core.file.impl.FilePropsImpl.size:J
         9: .line 39
            return
        end local 1 // java.nio.file.attribute.BasicFileAttributes attrs
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/vertx/core/file/impl/FilePropsImpl;
            0   10     1  attrs  Ljava/nio/file/attribute/BasicFileAttributes;
    MethodParameters:
       Name  Flags
      attrs  

  public long creationTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.creationTime:J
            lreturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public long lastAccessTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 48
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.lastAccessTime:J
            lreturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public long lastModifiedTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 53
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.lastModifiedTime:J
            lreturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public boolean isDirectory();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 58
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.isDirectory:Z
            ireturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public boolean isOther();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 63
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.isOther:Z
            ireturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public boolean isRegularFile();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 68
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.isRegularFile:Z
            ireturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public boolean isSymbolicLink();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 73
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.isSymbolicLink:Z
            ireturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;

  public long size();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.file.impl.FilePropsImpl this
         0: .line 78
            aload 0 /* this */
            getfield io.vertx.core.file.impl.FilePropsImpl.size:J
            lreturn
        end local 0 // io.vertx.core.file.impl.FilePropsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/file/impl/FilePropsImpl;
}
SourceFile: "FilePropsImpl.java"