|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CreateFlag | |
---|---|
org.apache.hadoop.fs | An abstract file system API. |
org.apache.hadoop.fs.viewfs |
Uses of CreateFlag in org.apache.hadoop.fs |
---|
Methods in org.apache.hadoop.fs that return CreateFlag | |
---|---|
static CreateFlag |
CreateFlag.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CreateFlag[] |
CreateFlag.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Method parameters in org.apache.hadoop.fs with type arguments of type CreateFlag | |
---|---|
FSDataOutputStream |
FileContext.create(Path f,
EnumSet<CreateFlag> createFlag,
org.apache.hadoop.fs.Options.CreateOpts... opts)
Create or overwrite file on indicated path and returns an output stream for writing into the file. |
FSDataOutputStream |
AbstractFileSystem.create(Path f,
EnumSet<CreateFlag> createFlag,
org.apache.hadoop.fs.Options.CreateOpts... opts)
The specification of this method matches that of FileContext.create(Path, EnumSet, Options.CreateOpts...) except
that the Path f must be fully qualified and the permission is absolute
(i.e. |
abstract FSDataOutputStream |
AbstractFileSystem.createInternal(Path f,
EnumSet<CreateFlag> flag,
FsPermission absolutePermission,
int bufferSize,
short replication,
long blockSize,
Progressable progress,
int bytesPerChecksum,
boolean createParent)
The specification of this method matches that of AbstractFileSystem.create(Path, EnumSet, Options.CreateOpts...) except that the opts
have been declared explicitly. |
protected FSDataOutputStream |
FilterFileSystem.primitiveCreate(Path f,
FsPermission absolutePermission,
EnumSet<CreateFlag> flag,
int bufferSize,
short replication,
long blockSize,
Progressable progress,
int bytesPerChecksum)
|
protected FSDataOutputStream |
FileSystem.primitiveCreate(Path f,
FsPermission absolutePermission,
EnumSet<CreateFlag> flag,
int bufferSize,
short replication,
long blockSize,
Progressable progress,
int bytesPerChecksum)
Deprecated. |
static void |
CreateFlag.validate(EnumSet<CreateFlag> flag)
Validate the CreateFlag and throw exception if it is invalid |
static void |
CreateFlag.validate(Object path,
boolean pathExists,
EnumSet<CreateFlag> flag)
Validate the CreateFlag for create operation |
Uses of CreateFlag in org.apache.hadoop.fs.viewfs |
---|
Method parameters in org.apache.hadoop.fs.viewfs with type arguments of type CreateFlag | |
---|---|
FSDataOutputStream |
ViewFs.createInternal(Path f,
EnumSet<CreateFlag> flag,
FsPermission absolutePermission,
int bufferSize,
short replication,
long blockSize,
Progressable progress,
int bytesPerChecksum,
boolean createParent)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |