public static enum Action.ActionEffect extends Enum<Action.ActionEffect>
| Enum Constant and Description |
|---|
ADDRESS
"Address" a resource, thus confirming the address is valid.
|
READ_CONFIG
Read the persistent configuration
|
READ_RUNTIME
Read runtime state
|
WRITE_CONFIG
Modify the persistent configuration
|
WRITE_RUNTIME
Modify runtime state
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Action.ActionEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action.ActionEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action.ActionEffect ADDRESS
public static final Action.ActionEffect READ_CONFIG
public static final Action.ActionEffect READ_RUNTIME
public static final Action.ActionEffect WRITE_CONFIG
public static final Action.ActionEffect WRITE_RUNTIME
public static Action.ActionEffect[] values()
for (Action.ActionEffect c : Action.ActionEffect.values()) System.out.println(c);
public static Action.ActionEffect 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 String toString()
toString in class Enum<Action.ActionEffect>Copyright © 2016 JBoss by Red Hat. All rights reserved.