Java org.apache.hadoop.fs AbstractFileSystem fields, constructors, methods, implement or subclass

Example usage for Java org.apache.hadoop.fs AbstractFileSystem fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.hadoop.fs AbstractFileSystem.

The text is from its open source code.

Subclass

org.apache.hadoop.fs.AbstractFileSystem has subclasses.
Click this link to see all its subclasses.

Method

AbstractFileSystemcreateFileSystem(URI uri, Configuration conf)
Create a file system instance for the specified uri using the conf.
booleandelete(final Path f, final boolean recursive)
The specification of this method matches that of FileContext#delete(Path,boolean) except that Path f must be for this file system.
AbstractFileSystemget(final URI uri, final Configuration conf)
The main factory method for creating a file system.
BlockLocation[]getFileBlockLocations(final Path f, final long start, final long len)
The specification of this method matches that of FileContext#getFileBlockLocations(Path,long,long) except that Path f must be for this file system.
FileStatusgetFileStatus(final Path f)
The specification of this method matches that of FileContext#getFileStatus(Path) except that an UnresolvedLinkException may be thrown if a symlink is encountered in the path.
FileStatus[]listStatus(final Path f)
The specification of this method matches that of FileContext.Util#listStatus(Path) except that Path f must be for this file system.
RemoteIteratorlistStatusIterator(final Path f)
The specification of this method matches that of FileContext#listStatus(Path) except that Path f must be for this file system.
FSDataInputStreamopen(final Path f)
The specification of this method matches that of FileContext#open(Path) except that Path f must be for this file system.