| 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FsAction>
org.apache.hadoop.fs.permission.FsAction
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 | |
|---|---|
 int | 
INDEX
Octal representation  | 
 String | 
SYMBOL
Symbolic representation  | 
| Method Summary | |
|---|---|
 FsAction | 
and(FsAction that)
AND operation.  | 
 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're declared.  | 
| Methods inherited from class java.lang.Enum | 
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
finalize, 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 int INDEX
public final String SYMBOL
| Method Detail | 
|---|
public static final 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 namepublic boolean implies(FsAction that)
that - public FsAction and(FsAction that)
public FsAction or(FsAction that)
public FsAction not()
  | 
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||