Uses of Class
org.refcodes.filesystem.UnknownFileSystemException

  • Uses of UnknownFileSystemException in org.refcodes.filesystem

    Modifier and Type
    Method
    Description
    ChangeRootFileSystemDecorator.createFile(String aKey)
    Creates a file (handle) with the given key.
    ChangeRootFileSystemDecorator.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    FileSystem.createFile(String aKey)
    Creates a file (handle) with the given key.
    FileSystem.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    InMemoryFileSystem.createFile(String aKey)
    Creates a file (handle) with the given key.
    InMemoryFileSystem.createFile(String aPath, String aName)
    Creates a file (handle) with the given path and name.
    void
    ChangeRootFileSystemDecorator.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    void
    FileSystem.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    void
    InMemoryFileSystem.deleteFile(FileHandle aFileHandle)
    Deletes a file (handle) from the file system.
    ChangeRootFileSystemDecorator.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    ChangeRootFileSystemDecorator.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    ChangeRootFileSystemDecorator.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    FileSystem.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    FileSystem.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    FileSystem.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle)
    An input stream is being provided from which the data of the file (handle) may be read.
    void
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle, File aToFile)
    The data contained in the given file (handle) is written to the provided file.
    void
    InMemoryFileSystem.fromFile(FileHandle aFromFileHandle, OutputStream aOutputStream)
    The data contained in the given file (handle) is written to the provided output stream.
    ChangeRootFileSystemDecorator.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    ChangeRootFileSystemDecorator.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    FileSystem.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    FileSystem.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    InMemoryFileSystem.getFileHandle(String aKey)
    Gets a file (handle) with the given key from the file system.
    InMemoryFileSystem.getFileHandle(String aPath, String aName)
    Gets a file (handle) with the given path and name from the file system.
    ChangeRootFileSystemDecorator.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    FileSystem.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    InMemoryFileSystem.getFileHandles(String aPath, boolean isRecursively)
    With the behavior of the FileSystem.hasFiles(String, boolean) method, all file (handle)s found for the path are returned.
    boolean
    ChangeRootFileSystemDecorator.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    ChangeRootFileSystemDecorator.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    ChangeRootFileSystemDecorator.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    FileSystem.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    FileSystem.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    FileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    InMemoryFileSystem.hasFile(String aKey)
    Tests whether the file system knows a file (handle) with the given key.
    boolean
    InMemoryFileSystem.hasFile(String aPath, String aName)
    Tests whether the file system knows a file (handle) with the given path and name.
    boolean
    InMemoryFileSystem.hasFile(FileHandle aFileHandle)
    Returns true in case the given file (handle) exists.
    boolean
    ChangeRootFileSystemDecorator.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    boolean
    FileSystem.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    boolean
    InMemoryFileSystem.hasFiles(String aPath, boolean isRecursively)
    Determines whether there is any file (handle)s found for the given path.
    ChangeRootFileSystemDecorator.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    FileSystem.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    InMemoryFileSystem.moveFile(FileHandle aFileHandle, String aNewKey)
    Renames the file (handle), it will be accessible via the provided key.
    ChangeRootFileSystemDecorator.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    FileSystem.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    InMemoryFileSystem.renameFile(FileHandle aFileHandle, String aNewName)
    Renames the file (handle), the name part of the key will be renamed to the new name.
    ChangeRootFileSystemDecorator.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    ChangeRootFileSystemDecorator.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    ChangeRootFileSystemDecorator.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    ChangeRootFileSystemDecorator.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    FileSystem.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    FileSystem.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    FileSystem.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    FileSystem.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    InMemoryFileSystem.toFile(FileHandle aToFileHandle)
    Returns an output stream which may be used to write (or append, in case data did already exist for the file system) data to a file (handle).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, byte[] aBuffer)
    Data provided by the given buffer is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, File aFromFile)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).
    void
    InMemoryFileSystem.toFile(FileHandle aToFileHandle, InputStream aInputStream)
    Data provided by the given input stream is written to the file (handle) (or appended to the file (handle)'s data in case the file (handle) did already contain data).