org.jboss.txbridge.ba.annotation
Enum AgreementType
java.lang.Object
java.lang.Enum<AgreementType>
org.jboss.txbridge.ba.annotation.AgreementType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<AgreementType>
public enum AgreementType
- extends java.lang.Enum<AgreementType>
List of supported agreement protocols the BA Service may enlist for. Those are
the protocols defined in the WS-BusinessActivity specification:
PARTICIPANT_COMPLETION - Business Agreement With Participant Completion
COORDINATOR_COMPLETION - Business Agreement With Coordinator Completion
- Version:
- 0.1
- Author:
- Maciej P. Machulak (mmachulak@redhat.com)
Method Summary |
static AgreementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AgreementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
PARTICIPANT_COMPLETION
public static final AgreementType PARTICIPANT_COMPLETION
COORDINATOR_COMPLETION
public static final AgreementType COORDINATOR_COMPLETION
values
public static final AgreementType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(AgreementType c : AgreementType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static AgreementType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name