public enum AspAction extends Enum<AspAction>
| Enum Constant and Description |
|---|
attach
The action to attach the asp.
|
detach
The action to detach the asp.
|
update
The action to update the asp.
|
| Modifier and Type | Method and Description |
|---|---|
static AspAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AspAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AspAction attach
public static final AspAction detach
public static final AspAction update
public static AspAction[] values()
for (AspAction c : AspAction.values()) System.out.println(c);
public static AspAction 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.