| Enum Constant | Description | 
|---|---|
NONE | 
|
READ_ONLY | 
|
READ_WRITE | 
|
WRITE_ONLY | 
| Modifier and Type | Method | Description | 
|---|---|---|
Priv | 
_decode(String objectReference,
       String applicationReference) | 
 Return the correct enum member for a given string/object reference. 
 | 
String | 
_encode(Object japlEnum) | 
|
TypeClass[] | 
_getAppleScriptTypes() | 
|
Class<Priv> | 
_getJavaType() | 
|
String | 
getCode() | 
|
String | 
getDescription() | 
|
String | 
getName() | 
|
static Priv | 
valueOf(String name) | 
 Returns the enum constant of this type with the specified name. 
 | 
static Priv[] | 
values() | 
 Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Priv READ_ONLY
public static final Priv READ_WRITE
public static final Priv WRITE_ONLY
public static final Priv NONE
public static final TypeClass CLASS
public static Priv[] values()
for (Priv c : Priv.values()) System.out.println(c);
public static Priv valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getCode()
public String getDescription()
getDescription in interface JaplEnumpublic Priv _decode(String objectReference, String applicationReference)
public Class<Priv> _getJavaType()
_getJavaType in interface Codec<Priv>_decode(String, String)public TypeClass[] _getAppleScriptTypes()
_getAppleScriptTypes in interface Codec<Priv>_decode(String, String)