Uses of Class
org.h2.store.fs.FilePathWrapper
-
Packages that use FilePathWrapper Package Description org.h2.mvstore.cache Classes related to caching.org.h2.store.fs A file system abstraction.org.h2.store.fs.async This file system stores files on disk and uses java.nio.channels.AsynchronousFileChannel to access the files.org.h2.store.fs.encrypt An encrypted file system abstraction.org.h2.store.fs.niomapped This file system stores files on disk and uses java.nio to access the files.org.h2.store.fs.rec A file system that records all write operations and can re-play them.org.h2.store.fs.retry A file system that re-opens and re-tries the operation if the file was closed, because a thread was interrupted.org.h2.store.fs.split A file system that may split files into multiple smaller files (required for a FAT32 because it only support files up to 2 GB). -
-
Uses of FilePathWrapper in org.h2.mvstore.cache
Subclasses of FilePathWrapper in org.h2.mvstore.cache Modifier and Type Class Description class
FilePathCache
A file with a read cache. -
Uses of FilePathWrapper in org.h2.store.fs
Methods in org.h2.store.fs that return FilePathWrapper Modifier and Type Method Description private FilePathWrapper
FilePathWrapper. create(java.lang.String path, FilePath base)
FilePathWrapper
FilePathWrapper. getPath(java.lang.String path)
FilePathWrapper
FilePathWrapper. wrap(FilePath base)
Create a wrapped path instance for the given base path. -
Uses of FilePathWrapper in org.h2.store.fs.async
Subclasses of FilePathWrapper in org.h2.store.fs.async Modifier and Type Class Description class
FilePathAsync
This file system stores files on disk and uses java.nio.channels.AsynchronousFileChannel to access the files. -
Uses of FilePathWrapper in org.h2.store.fs.encrypt
Subclasses of FilePathWrapper in org.h2.store.fs.encrypt Modifier and Type Class Description class
FilePathEncrypt
An encrypted file. -
Uses of FilePathWrapper in org.h2.store.fs.niomapped
Subclasses of FilePathWrapper in org.h2.store.fs.niomapped Modifier and Type Class Description class
FilePathNioMapped
This file system stores files on disk and uses java.nio to access the files. -
Uses of FilePathWrapper in org.h2.store.fs.rec
Subclasses of FilePathWrapper in org.h2.store.fs.rec Modifier and Type Class Description class
FilePathRec
A file system that records all write operations and can re-play them. -
Uses of FilePathWrapper in org.h2.store.fs.retry
Subclasses of FilePathWrapper in org.h2.store.fs.retry Modifier and Type Class Description class
FilePathRetryOnInterrupt
A file system that re-opens and re-tries the operation if the file was closed, because a thread was interrupted. -
Uses of FilePathWrapper in org.h2.store.fs.split
Subclasses of FilePathWrapper in org.h2.store.fs.split Modifier and Type Class Description class
FilePathSplit
A file system that may split files into multiple smaller files.
-