|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<UnixEntityModeFlag>
org.entityfs.entityattrs.unix.UnixEntityModeFlag
public enum UnixEntityModeFlag
This is an enumeration over the different mode flags that a
UnixEntityMode
might have.
Enum Constant Summary | |
---|---|
MANDATORY_LOCKING
|
|
SET_GROUP_ID
|
|
SET_USER_ID
|
|
STICKY_BIT
|
Method Summary | |
---|---|
char |
getCharValue()
Get the flag's character value. |
int |
getIntValue()
Get the flag's integer value. |
String |
getReadable()
Get a readable representation of the mode flag. |
String |
toString()
|
static UnixEntityModeFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static UnixEntityModeFlag[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final UnixEntityModeFlag SET_USER_ID
public static final UnixEntityModeFlag SET_GROUP_ID
public static final UnixEntityModeFlag MANDATORY_LOCKING
public static final UnixEntityModeFlag STICKY_BIT
Method Detail |
---|
public static UnixEntityModeFlag[] values()
for (UnixEntityModeFlag c : UnixEntityModeFlag.values()) System.out.println(c);
public static UnixEntityModeFlag 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 int getIntValue()
public char getCharValue()
public String getReadable()
toString
implementations.
public String toString()
toString
in class Enum<UnixEntityModeFlag>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |