Package io.vertx.mutiny.core.file
Class FileSystemProps
- java.lang.Object
-
- io.vertx.mutiny.core.file.FileSystemProps
-
public class FileSystemProps extends Object
Represents properties of the file system. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<FileSystemProps>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description FileSystemProps(io.vertx.core.file.FileSystemProps delegate)
FileSystemProps(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
io.vertx.core.file.FileSystemProps
getDelegate()
int
hashCode()
static FileSystemProps
newInstance(io.vertx.core.file.FileSystemProps arg)
String
toString()
long
totalSpace()
long
unallocatedSpace()
long
usableSpace()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<FileSystemProps> __TYPE_ARG
-
-
Constructor Detail
-
FileSystemProps
public FileSystemProps(io.vertx.core.file.FileSystemProps delegate)
-
FileSystemProps
public FileSystemProps(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.core.file.FileSystemProps getDelegate()
-
totalSpace
public long totalSpace()
- Returns:
- The total space on the file system, in bytes
-
unallocatedSpace
public long unallocatedSpace()
- Returns:
- The total un-allocated space on the file system, in bytes
-
usableSpace
public long usableSpace()
- Returns:
- The total usable space on the file system, in bytes
-
newInstance
public static FileSystemProps newInstance(io.vertx.core.file.FileSystemProps arg)
-
-