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