public static enum JGrapeTrigger.TriggerType extends Enum<JGrapeTrigger.TriggerType>
| Enum Constant and Description |
|---|
ALL
All trigger, used on actions insert, update, delete and
save .
|
DELETE
Delete trigger, used on action delete.
|
INSERT
Insert trigger, used on action insert.
|
SAVE
Save trigger, used on action save.
|
UPDATE
Update trigger, used on action update.
|
| Modifier and Type | Method and Description |
|---|---|
static JGrapeTrigger.TriggerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JGrapeTrigger.TriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JGrapeTrigger.TriggerType DELETE
public static final JGrapeTrigger.TriggerType INSERT
public static final JGrapeTrigger.TriggerType UPDATE
public static final JGrapeTrigger.TriggerType SAVE
public static final JGrapeTrigger.TriggerType ALL
public static JGrapeTrigger.TriggerType[] values()
for (JGrapeTrigger.TriggerType c : JGrapeTrigger.TriggerType.values()) System.out.println(c);
public static JGrapeTrigger.TriggerType 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 © 2006–2020 Esito AS. All rights reserved.