public static enum AVObject.Hook extends Enum<AVObject.Hook>
| Enum Constant and Description |
|---|
afterDelete |
afterSave |
afterUpdate |
beforeDelete |
beforeSave |
beforeUpdate |
| Modifier and Type | Method and Description |
|---|---|
static AVObject.Hook |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AVObject.Hook[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AVObject.Hook beforeSave
public static final AVObject.Hook afterSave
public static final AVObject.Hook beforeUpdate
public static final AVObject.Hook afterUpdate
public static final AVObject.Hook beforeDelete
public static final AVObject.Hook afterDelete
public static AVObject.Hook[] values()
for (AVObject.Hook c : AVObject.Hook.values()) System.out.println(c);
public static AVObject.Hook 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 © 2017. All rights reserved.