public enum DccAction extends Enum<DccAction>
| Enum Constant and Description |
|---|
bind
The action for binding tags.
|
modifyAttribute
The action for modifying attribute.
|
unbind
The action for unbinding tags.
|
| Modifier and Type | Method and Description |
|---|---|
static DccAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DccAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DccAction bind
public static final DccAction unbind
public static final DccAction modifyAttribute
public static DccAction[] values()
for (DccAction c : DccAction.values()) System.out.println(c);
public static DccAction 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.