| 
 | ||||||||||
| 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 | |
|---|---|
|  String | SYMBOLSymbolic 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 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()
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||