public static enum BizOperation.OperationType extends Enum<BizOperation.OperationType>
| Enum Constant and Description |
|---|
CHECK |
INSTALL |
SWITCH |
UNINSTALL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static BizOperation.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BizOperation.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BizOperation.OperationType INSTALL
public static final BizOperation.OperationType UNINSTALL
public static final BizOperation.OperationType SWITCH
public static final BizOperation.OperationType CHECK
public static final BizOperation.OperationType UNKNOWN
public static BizOperation.OperationType[] values()
for (BizOperation.OperationType c : BizOperation.OperationType.values()) System.out.println(c);
public static BizOperation.OperationType 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 © 2024. All rights reserved.