Package io.vertx.mutiny.core.file
Class FileProps
- java.lang.Object
-
- io.vertx.mutiny.core.file.FileProps
-
public class FileProps extends Object
Represents properties of a file on the file system.original
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<FileProps>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
creationTime()
boolean
equals(Object o)
io.vertx.core.file.FileProps
getDelegate()
int
hashCode()
boolean
isDirectory()
boolean
isOther()
boolean
isRegularFile()
boolean
isSymbolicLink()
long
lastAccessTime()
long
lastModifiedTime()
static FileProps
newInstance(io.vertx.core.file.FileProps arg)
long
size()
String
toString()
-
-
-
Constructor Detail
-
FileProps
public FileProps(io.vertx.core.file.FileProps delegate)
-
FileProps
public FileProps(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.core.file.FileProps getDelegate()
-
creationTime
public long creationTime()
- Returns:
-
lastAccessTime
public long lastAccessTime()
- Returns:
-
lastModifiedTime
public long lastModifiedTime()
- Returns:
-
isDirectory
public boolean isDirectory()
- Returns:
-
isOther
public boolean isOther()
- Returns:
-
isRegularFile
public boolean isRegularFile()
- Returns:
-
isSymbolicLink
public boolean isSymbolicLink()
- Returns:
-
size
public long size()
- Returns:
-
newInstance
public static FileProps newInstance(io.vertx.core.file.FileProps arg)
-
-