public enum ScriptFunction extends java.lang.Enum<ScriptFunction>
Enum Constant and Description |
---|
POST_MEDIA_IMPORT
The script function executed after importing media
|
POST_MEDIA_MANAGE
The script function executed after managing media
|
PRE_MEDIA_IMPORT
The script function executed before importing media
|
PRE_MEDIA_MANAGE
The script function executed before managing media
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Used to get the function name
|
static ScriptFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScriptFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptFunction PRE_MEDIA_IMPORT
public static final ScriptFunction POST_MEDIA_IMPORT
public static final ScriptFunction PRE_MEDIA_MANAGE
public static final ScriptFunction POST_MEDIA_MANAGE
public static ScriptFunction[] values()
for (ScriptFunction c : ScriptFunction.values()) System.out.println(c);
public static ScriptFunction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()