com.sun.xml.ws.security.policy
Enum SecurityAssertionValidator.AssertionFitness

java.lang.Object
  extended by java.lang.Enum<SecurityAssertionValidator.AssertionFitness>
      extended by com.sun.xml.ws.security.policy.SecurityAssertionValidator.AssertionFitness
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SecurityAssertionValidator.AssertionFitness>
Enclosing interface:
SecurityAssertionValidator

public static enum SecurityAssertionValidator.AssertionFitness
extends java.lang.Enum<SecurityAssertionValidator.AssertionFitness>


Enum Constant Summary
HAS_INVALID_VALUE
           
HAS_UNKNOWN_ASSERTION
           
HAS_UNSUPPORTED_ASSERTION
           
IS_VALID
           
 
Method Summary
static SecurityAssertionValidator.AssertionFitness valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SecurityAssertionValidator.AssertionFitness[] 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

HAS_UNKNOWN_ASSERTION

public static final SecurityAssertionValidator.AssertionFitness HAS_UNKNOWN_ASSERTION

IS_VALID

public static final SecurityAssertionValidator.AssertionFitness IS_VALID

HAS_UNSUPPORTED_ASSERTION

public static final SecurityAssertionValidator.AssertionFitness HAS_UNSUPPORTED_ASSERTION

HAS_INVALID_VALUE

public static final SecurityAssertionValidator.AssertionFitness HAS_INVALID_VALUE
Method Detail

values

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

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

valueOf

public static SecurityAssertionValidator.AssertionFitness 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