public static enum Plugin.Type extends Enum<Plugin.Type>
| Enum Constant and Description |
|---|
ONE_OFF |
PERIODIC |
POST_RETRIEVE |
POST_UPDATE |
PRE_RETRIEVE |
PRE_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static Plugin.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.Type PRE_RETRIEVE
public static final Plugin.Type POST_RETRIEVE
public static final Plugin.Type PRE_UPDATE
public static final Plugin.Type POST_UPDATE
public static final Plugin.Type PERIODIC
public static final Plugin.Type ONE_OFF
public static Plugin.Type[] values()
for (Plugin.Type c : Plugin.Type.values()) System.out.println(c);
public static Plugin.Type 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 nullCopyright © 2014. All Rights Reserved.