public static enum ExceptionalOrderConversation.State extends Enum<ExceptionalOrderConversation.State>
Enum Constant and Description |
---|
ACCEPT
The conversation has reached a point of Explicit-Acceptance to both parties
|
FORCED
The System has Forced an acceptance on the final/current version
Note: System may need to guarantee audit of all conversations of this nature to ensure the state was justly arrived at; else avoid using it. |
PRE_NEGOTIATED
An Opt-in our Op-out agreed before/configured overrides the need for further conversation
and based on that the final state is granted.
|
PROPOSED
One of the parties has made a proposal that is awaiting the acceptance or rejection or further Proposal
|
REJECT
One of the parties has explicitly rejected the conversation
|
Modifier and Type | Method and Description |
---|---|
static ExceptionalOrderConversation.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionalOrderConversation.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionalOrderConversation.State ACCEPT
public static final ExceptionalOrderConversation.State REJECT
public static final ExceptionalOrderConversation.State PRE_NEGOTIATED
public static final ExceptionalOrderConversation.State PROPOSED
public static final ExceptionalOrderConversation.State FORCED
public static ExceptionalOrderConversation.State[] values()
for (ExceptionalOrderConversation.State c : ExceptionalOrderConversation.State.values()) System.out.println(c);
public static ExceptionalOrderConversation.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 nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.