|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FsAction> org.apache.hadoop.fs.permission.FsAction
@InterfaceAudience.Public @InterfaceStability.Stable public enum FsAction
File system actions, e.g. read, write, etc.
Enum Constant Summary | |
---|---|
ALL
|
|
EXECUTE
|
|
NONE
|
|
READ
|
|
READ_EXECUTE
|
|
READ_WRITE
|
|
WRITE
|
|
WRITE_EXECUTE
|
Field Summary | |
---|---|
String |
SYMBOL
Symbolic representation |
Method Summary | |
---|---|
FsAction |
and(FsAction that)
AND operation. |
static FsAction |
getFsAction(String permission)
Get the FsAction enum for String representation of permissions |
boolean |
implies(FsAction that)
Return true if this action implies that action. |
FsAction |
not()
NOT operation. |
FsAction |
or(FsAction that)
OR operation. |
static FsAction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FsAction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FsAction NONE
public static final FsAction EXECUTE
public static final FsAction WRITE
public static final FsAction WRITE_EXECUTE
public static final FsAction READ
public static final FsAction READ_EXECUTE
public static final FsAction READ_WRITE
public static final FsAction ALL
Field Detail |
---|
public final String SYMBOL
Method Detail |
---|
public static FsAction[] values()
for (FsAction c : FsAction.values()) System.out.println(c);
public static FsAction valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean implies(FsAction that)
that
- public FsAction and(FsAction that)
public FsAction or(FsAction that)
public FsAction not()
public static FsAction getFsAction(String permission)
permission
- 3-character string representation of permission. ex: rwx
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |