Package com.sun.xml.ws.security.policy
Enum SecurityAssertionValidator.AssertionFitness
- java.lang.Object
-
- java.lang.Enum<SecurityAssertionValidator.AssertionFitness>
-
- com.sun.xml.ws.security.policy.SecurityAssertionValidator.AssertionFitness
-
- All Implemented Interfaces:
Serializable
,Comparable<SecurityAssertionValidator.AssertionFitness>
- Enclosing interface:
- SecurityAssertionValidator
public static enum SecurityAssertionValidator.AssertionFitness extends Enum<SecurityAssertionValidator.AssertionFitness>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HAS_INVALID_VALUE
HAS_UNKNOWN_ASSERTION
HAS_UNSUPPORTED_ASSERTION
IS_VALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SecurityAssertionValidator.AssertionFitness
valueOf(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 are declared.
-
-
-
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 SecurityAssertionValidator.AssertionFitness[] values()
Returns an array containing the constants of this enum type, in the order they are 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 are declared
-
valueOf
public static SecurityAssertionValidator.AssertionFitness valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-