Uses of Class
de.xima.fc.common.io.FileSize
Packages that use FileSize
Package
Description
Package containing various interfaces for generic accessors.
-
Uses of FileSize in de.xima.fc.common.filesystem
Methods in de.xima.fc.common.filesystem that return FileSizeModifier and TypeMethodDescriptionICommonFileSystem.getFileSize(FD file) Gets the size of the file with the given key. -
Uses of FileSize in de.xima.fc.common.function.accessor
Methods in de.xima.fc.common.function.accessor that return FileSizeModifier and TypeMethodDescriptionIFileSizeGetter.getFileSize(Holder object) Gets the file size of an object representing a file.Methods in de.xima.fc.common.function.accessor with parameters of type FileSizeModifier and TypeMethodDescriptionvoidIFileSizeSetter.setFileSize(Holder object, FileSize value) Sets the file size of an object representing a file. -
Uses of FileSize in de.xima.fc.common.io
Classes in de.xima.fc.common.io that implement interfaces with type arguments of type FileSizeModifier and TypeClassDescriptionfinal classData class for a file size, which can be given in bytes, kilobytes, megabytes etc.Methods in de.xima.fc.common.io that return FileSizeModifier and TypeMethodDescriptionstatic FileSizeFileSize.ofBytes(long bytes) Creates a new FileSize object with the given number of bytes.static FileSizeFileSize.ofGB(long GB) Creates a new FileSize object with the given number of GB. 1 GB = 1000^3 bytes.static FileSizeFileSize.ofGiB(long GiB) Creates a new FileSize object with the given number of GiB. 1 GiB = 1024^3 bytes.static FileSizeFileSize.ofKB(long kB) Creates a new FileSize object with the given number of kB. 1 kB = 1000 bytes.static FileSizeFileSize.ofKiB(long KiB) Creates a new FileSize object with the given number of KiB. 1 KiB = 1024 bytes.static FileSizeFileSize.ofMB(long MB) Creates a new FileSize object with the given number of MB. 1 MB = 1000^2 bytes.static FileSizeFileSize.ofMiB(long MiB) Creates a new FileSize object with the given number of MiB. 1 MiB = 1024^2 bytes.static FileSizeFileSize.ofPB(long PB) Creates a new FileSize object with the given number of PB. 1 PB = 1000^5 bytes.static FileSizeFileSize.ofPiB(long PiB) Creates a new FileSize object with the given number of PiB. 1 PiB = 1024^5 bytes.static FileSizeFileSize.ofTB(long TB) Creates a new FileSize object with the given number of TB. 1 TB = 1000^4 bytes.static FileSizeFileSize.ofTiB(long TiB) Creates a new FileSize object with the given number of TiB. 1 TiB = 1024^4 bytes.static FileSizeFileSize.zero()Gets a file size object representing zero bytes.static FileSizeFileSize.zeroFileSize()Gets a file size object representing zero bytes.Methods in de.xima.fc.common.io with parameters of type FileSize -
Uses of FileSize in de.xima.fc.gui.elfinder
Methods in de.xima.fc.gui.elfinder with parameters of type FileSizeModifier and TypeMethodDescriptionFileSystemElFinderConnectorConfig.BuilderStage3.maxUploadSizePerFile(FileSize maxSizeBytes) Sets the maximum size (in bytes) of a single file that can be uploaded.FileSystemElFinderConnectorConfig.BuilderStage3.maxUploadSizeTotal(FileSize maxSizeBytes) Set the maximum total size (in bytes) of all files that can be uploaded in a single request. -
Uses of FileSize in de.xima.fc.logic.filesystem
Methods in de.xima.fc.logic.filesystem that return FileSize