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

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

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


Enum Constant Summary
AbsXPath
           
XPath10
           
XPathFilter20
           
XPathNone
           
 
Method Summary
 String getValue()
           
static AlgorithmSuite.XPathType lookUp(String name)
           
static AlgorithmSuite.XPathType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AlgorithmSuite.XPathType[] 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

XPathNone

public static final AlgorithmSuite.XPathType XPathNone

XPath10

public static final AlgorithmSuite.XPathType XPath10

XPathFilter20

public static final AlgorithmSuite.XPathType XPathFilter20

AbsXPath

public static final AlgorithmSuite.XPathType AbsXPath
Method Detail

values

public static AlgorithmSuite.XPathType[] 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.XPathType c : AlgorithmSuite.XPathType.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.XPathType 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.XPathType lookUp(String name)

getValue

public String getValue()


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