| Enum Constant | Description |
|---|---|
ITEMS_ADDED |
|
ITEMS_REMOVED |
|
WINDOW_CLOSED |
|
WINDOW_MOVED |
|
WINDOW_OPENED |
| Modifier and Type | Method | Description |
|---|---|---|
Actn |
_decode(String objectReference,
String applicationReference) |
Return the correct enum member for a given string/object reference.
|
String |
_encode(Object japlEnum) |
|
TypeClass[] |
_getAppleScriptTypes() |
|
Class<Actn> |
_getJavaType() |
|
String |
getCode() |
|
String |
getDescription() |
|
String |
getName() |
|
static Actn |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Actn[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Actn ITEMS_ADDED
public static final Actn ITEMS_REMOVED
public static final Actn WINDOW_CLOSED
public static final Actn WINDOW_MOVED
public static final Actn WINDOW_OPENED
public static final TypeClass CLASS
public static Actn[] values()
for (Actn c : Actn.values()) System.out.println(c);
public static Actn 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 Actn _decode(String objectReference, String applicationReference)
public Class<Actn> _getJavaType()
_getJavaType in interface Codec<Actn>_decode(String, String)public TypeClass[] _getAppleScriptTypes()
_getAppleScriptTypes in interface Codec<Actn>_decode(String, String)