public enum HookStatus extends Enum<HookStatus>
| Enum Constant and Description |
|---|
Skip
Пропуситть запись
|
Write
Записать значение в system.out/err
|
| Modifier and Type | Method and Description |
|---|---|
static HookStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HookStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HookStatus Write
public static final HookStatus Skip
public static HookStatus[] values()
for (HookStatus c : HookStatus.values()) System.out.println(c);
public static HookStatus 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 © 2018. All rights reserved.