com.sun.xml.ws.tx.common
Enum ATAssertion

java.lang.Object
  extended by java.lang.Enum<ATAssertion>
      extended by com.sun.xml.ws.tx.common.ATAssertion
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ATAssertion>

public enum ATAssertion
extends java.lang.Enum<ATAssertion>

Enum for ATAssertion values.

Since:
1.0

Enum Constant Summary
ALLOWED
           
MANDATORY
           
NOT_ALLOWED
           
 
Method Summary
static ATAssertion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ATAssertion[] 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
 

Enum Constant Detail

NOT_ALLOWED

public static final ATAssertion NOT_ALLOWED

ALLOWED

public static final ATAssertion ALLOWED

MANDATORY

public static final ATAssertion MANDATORY
Method Detail

values

public static final ATAssertion[] 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(ATAssertion c : ATAssertion.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ATAssertion 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