public enum MaapiDeleteAllFlag extends Enum<MaapiDeleteAllFlag>
Maapi.deleteAll(int, MaapiDeleteAllFlag)
Enum Constant and Description |
---|
DEL_ALL
Delete everything.
|
DEL_EXPORTED
Delete everything except namespaces that were exported to none
(with tailf:export none).
|
DEL_SAFE
Delete everything except namespaces that were exported to none
(with tailf:export none).
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static MaapiDeleteAllFlag |
valueOf(int i) |
static MaapiDeleteAllFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaapiDeleteAllFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaapiDeleteAllFlag DEL_SAFE
public static final MaapiDeleteAllFlag DEL_ALL
public static final MaapiDeleteAllFlag DEL_EXPORTED
public static MaapiDeleteAllFlag[] values()
for (MaapiDeleteAllFlag c : MaapiDeleteAllFlag.values()) System.out.println(c);
public static MaapiDeleteAllFlag 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 nullpublic int getValue()
public static MaapiDeleteAllFlag valueOf(int i)