Uses of Interface
org.apache.commons.vfs2.RandomAccessContent
-
Packages that use RandomAccessContent Package Description org.apache.commons.vfs2 The public VFS API.org.apache.commons.vfs2.provider The File Provider API, and utility classes.org.apache.commons.vfs2.provider.ftp The FTP File Provider.org.apache.commons.vfs2.provider.http4 The HTTP4 File Providerorg.apache.commons.vfs2.provider.local The Local File Provider.org.apache.commons.vfs2.provider.ram The RAM File Provider.org.apache.commons.vfs2.provider.sftp The SFTP Provider.org.apache.commons.vfs2.util Utility classes used by the VFS. -
-
Uses of RandomAccessContent in org.apache.commons.vfs2
Methods in org.apache.commons.vfs2 that return RandomAccessContent Modifier and Type Method Description RandomAccessContent
FileContent. getRandomAccessContent(RandomAccessMode mode)
Gets an stream for reading/writing the file's content. -
Uses of RandomAccessContent in org.apache.commons.vfs2.provider
Classes in org.apache.commons.vfs2.provider that implement RandomAccessContent Modifier and Type Class Description class
AbstractRandomAccessContent
Implements theDataOutput
part of theRandomAccessContent
interface and throwsUnsupportedOperationException
when one of these methods are called.class
AbstractRandomAccessStreamContent
Implements the part usable for all stream-based random access.private class
DefaultFileContent.FileRandomAccessContent
An input/output stream for reading/writing content on random positionsFields in org.apache.commons.vfs2.provider with type parameters of type RandomAccessContent Modifier and Type Field Description private java.util.ArrayList<RandomAccessContent>
FileContentThreadData. randomAccessContentList
Methods in org.apache.commons.vfs2.provider that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
AbstractFileObject. doGetRandomAccessContent(RandomAccessMode mode)
Creates access to the file for random i/o.protected RandomAccessContent
DelegateFileObject. doGetRandomAccessContent(RandomAccessMode mode)
Creates access to the file for random i/o.RandomAccessContent
AbstractFileObject. getRandomAccessContent(RandomAccessMode mode)
Returns an input/output stream to use to read and write the content of the file in and random manner.RandomAccessContent
DefaultFileContent. getRandomAccessContent(RandomAccessMode mode)
Returns an input/output stream to use to read and write the content of the file in an random manner.Methods in org.apache.commons.vfs2.provider with parameters of type RandomAccessContent Modifier and Type Method Description (package private) void
FileContentThreadData. add(RandomAccessContent randomAccessContent)
private void
DefaultFileContent. endRandomAccess(RandomAccessContent rac)
Handles the end of random access.(package private) void
FileContentThreadData. remove(RandomAccessContent randomAccessContent)
Constructors in org.apache.commons.vfs2.provider with parameters of type RandomAccessContent Constructor Description FileRandomAccessContent(FileObject file, RandomAccessContent content)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.provider.ftp
Classes in org.apache.commons.vfs2.provider.ftp that implement RandomAccessContent Modifier and Type Class Description (package private) class
FtpRandomAccessContent
Implements FTP stream-based random access.Methods in org.apache.commons.vfs2.provider.ftp that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
FtpFileObject. doGetRandomAccessContent(RandomAccessMode mode)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.provider.http4
Classes in org.apache.commons.vfs2.provider.http4 that implement RandomAccessContent Modifier and Type Class Description (package private) class
Http4RandomAccessContent<FS extends Http4FileSystem>
RandomAccess content usingHttp4FileObject
.Methods in org.apache.commons.vfs2.provider.http4 that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
Http4FileObject. doGetRandomAccessContent(RandomAccessMode mode)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.provider.local
Classes in org.apache.commons.vfs2.provider.local that implement RandomAccessContent Modifier and Type Class Description (package private) class
LocalFileRandomAccessContent
ImplementsRandomAccessContent
for local files.Methods in org.apache.commons.vfs2.provider.local that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
LocalFile. doGetRandomAccessContent(RandomAccessMode mode)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.provider.ram
Classes in org.apache.commons.vfs2.provider.ram that implement RandomAccessContent Modifier and Type Class Description class
RamFileRandomAccessContent
RAM File Random Access Content.Methods in org.apache.commons.vfs2.provider.ram that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
RamFileObject. doGetRandomAccessContent(RandomAccessMode mode)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.provider.sftp
Classes in org.apache.commons.vfs2.provider.sftp that implement RandomAccessContent Modifier and Type Class Description (package private) class
SftpRandomAccessContent
Random access content.Methods in org.apache.commons.vfs2.provider.sftp that return RandomAccessContent Modifier and Type Method Description protected RandomAccessContent
SftpFileObject. doGetRandomAccessContent(RandomAccessMode mode)
-
Uses of RandomAccessContent in org.apache.commons.vfs2.util
Classes in org.apache.commons.vfs2.util that implement RandomAccessContent Modifier and Type Class Description class
MonitorRandomAccessContent
A RandomAccessContent that provides end-of-stream monitoring.Fields in org.apache.commons.vfs2.util declared as RandomAccessContent Modifier and Type Field Description private RandomAccessContent
MonitorRandomAccessContent. content
Constructors in org.apache.commons.vfs2.util with parameters of type RandomAccessContent Constructor Description MonitorRandomAccessContent(RandomAccessContent content)
-