org.apache.wss4j.policy.model
Enum AlgorithmSuite.C14NType

java.lang.Object
  extended by java.lang.Enum<AlgorithmSuite.C14NType>
      extended by org.apache.wss4j.policy.model.AlgorithmSuite.C14NType
All Implemented Interfaces:
Serializable, Comparable<AlgorithmSuite.C14NType>
Enclosing class:
AlgorithmSuite

public static enum AlgorithmSuite.C14NType
extends Enum<AlgorithmSuite.C14NType>


Enum Constant Summary
ExclusiveC14N
           
InclusiveC14N
           
InclusiveC14N11
           
 
Method Summary
 String getValue()
           
static AlgorithmSuite.C14NType lookUp(String name)
           
static AlgorithmSuite.C14NType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AlgorithmSuite.C14NType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ExclusiveC14N

public static final AlgorithmSuite.C14NType ExclusiveC14N

InclusiveC14N

public static final AlgorithmSuite.C14NType InclusiveC14N

InclusiveC14N11

public static final AlgorithmSuite.C14NType InclusiveC14N11
Method Detail

values

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

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

valueOf

public static AlgorithmSuite.C14NType 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 name
NullPointerException - if the argument is null

lookUp

public static AlgorithmSuite.C14NType lookUp(String name)

getValue

public String getValue()


Copyright © 2004–2014 The Apache Software Foundation. All rights reserved.