static enum Agent.InvocationModes extends java.lang.Enum<Agent.InvocationModes>
IMMEDIATELY - in this thread (the thread must be an agent thread)AGENT_WAIT - in a different agent, wait for responseAGENT_NO_WAIT in a different agent, do not wait for response| Enum Constant and Description |
|---|
AGENT_NO_WAIT |
AGENT_WAIT |
IMMEDIATELY |
| Modifier and Type | Method and Description |
|---|---|
static Agent.InvocationModes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Agent.InvocationModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Agent.InvocationModes IMMEDIATELY
public static final Agent.InvocationModes AGENT_WAIT
public static final Agent.InvocationModes AGENT_NO_WAIT
public static Agent.InvocationModes[] values()
for (Agent.InvocationModes c : Agent.InvocationModes.values()) System.out.println(c);
public static Agent.InvocationModes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null