|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<UserProcedure.State>
org.glassfish.cafe.api.UserProcedure.State
public static enum UserProcedure.State
| Enum Constant Summary | |
|---|---|
ACTIVE
The procedure is established, at least an acknowledgment for the first message sent has been received. |
|
ENDED
The user procedure has been terminated by the local side or by the remote side. |
|
INITIATED
The user procedure is created but no message has been sent. |
|
REFRESHING
After invoking the update() method in state ACTIVE, before an acknowledgment for the resulting sent message has been received. |
|
STARTING
The update() method has been invoked, the resulting first message of the procedure has been sent, but no acknowledgment has been received. |
|
| Method Summary | |
|---|---|
static UserProcedure.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static UserProcedure.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final UserProcedure.State INITIATED
public static final UserProcedure.State STARTING
public static final UserProcedure.State ACTIVE
public static final UserProcedure.State REFRESHING
public static final UserProcedure.State ENDED
| Method Detail |
|---|
public static UserProcedure.State[] values()
for (UserProcedure.State c : UserProcedure.State.values()) System.out.println(c);
public static UserProcedure.State valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||