public static enum HookContext.HookType extends Enum<HookContext.HookType>
| Enum Constant and Description |
|---|
ON_FAILURE_HOOK |
POST_EXEC_HOOK |
PRE_EXEC_HOOK |
| Modifier and Type | Method and Description |
|---|---|
static HookContext.HookType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HookContext.HookType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HookContext.HookType PRE_EXEC_HOOK
public static final HookContext.HookType POST_EXEC_HOOK
public static final HookContext.HookType ON_FAILURE_HOOK
public static HookContext.HookType[] values()
for (HookContext.HookType c : HookContext.HookType.values()) System.out.println(c);
public static HookContext.HookType 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 © 2015 The Apache Software Foundation. All rights reserved.