|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PsAccess>
org.foray.ps.PsAccess
public enum PsAccess
Enumeration of possible access values for a PostScript object.
| Enum Constant Summary | |
|---|---|
EXECUTE_ONLY
Access permission of "execute only". |
|
NONE
Access permission of "none". |
|
READ_ONLY
Access permission of "read only". |
|
UNLIMITED
Access permission of "unlimited". |
|
| Method Summary | |
|---|---|
int |
getPrivilege()
Returns the relative degree of privilege of this access code. |
static PsAccess |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PsAccess[] |
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 PsAccess NONE
public static final PsAccess EXECUTE_ONLY
public static final PsAccess READ_ONLY
public static final PsAccess UNLIMITED
| Method Detail |
|---|
public static PsAccess[] values()
for (PsAccess c : PsAccess.values()) System.out.println(c);
public static PsAccess 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 getPrivilege()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||