public enum RemoteInvocationQueueState extends Enum<RemoteInvocationQueueState>
RemoteInvocationQueue
.Enum Constant and Description |
---|
CANCELLED
The state if the
RemoteInvocationQueue has been cancelled . |
COMITTED
The state if the
RemoteInvocationQueue has been committed . |
FAILED
The state if the
RemoteInvocationQueue was to be committed
but this failed. |
OPEN
The initial state until
RemoteInvocationQueue.commit() or RemoteInvocationQueue.cancel()
is called for the first time. |
Modifier and Type | Method and Description |
---|---|
static RemoteInvocationQueueState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteInvocationQueueState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteInvocationQueueState OPEN
RemoteInvocationQueue.commit()
or RemoteInvocationQueue.cancel()
is called for the first time.public static final RemoteInvocationQueueState COMITTED
RemoteInvocationQueue
has been committed
.public static final RemoteInvocationQueueState CANCELLED
RemoteInvocationQueue
has been cancelled
.public static final RemoteInvocationQueueState FAILED
RemoteInvocationQueue
was to be committed
but this failed.public static RemoteInvocationQueueState[] values()
for (RemoteInvocationQueueState c : RemoteInvocationQueueState.values()) System.out.println(c);
public static RemoteInvocationQueueState 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 © 2001–2016 mmm-Team. All rights reserved.