uk.apl.jxc
Enum XSLTFunction.XSLTSpecification

java.lang.Object
  extended by java.lang.Enum<XSLTFunction.XSLTSpecification>
      extended by uk.apl.jxc.XSLTFunction.XSLTSpecification
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<XSLTFunction.XSLTSpecification>
Enclosing class:
XSLTFunction

public static enum XSLTFunction.XSLTSpecification
extends java.lang.Enum<XSLTFunction.XSLTSpecification>

Enumeration of the XSLT specifications used


Enum Constant Summary
CUSTOM
          Extends XSLT 1.0 with additional functionality such as MEAN not available until XSLT 2.0.
XSLT_1
          XSLT version 1.0
XSLT_2
          XSLT version 2.0
 
Method Summary
 java.lang.String getVersion()
           
static XSLTFunction.XSLTSpecification valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XSLTFunction.XSLTSpecification[] 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

XSLT_1

public static final XSLTFunction.XSLTSpecification XSLT_1
XSLT version 1.0


XSLT_2

public static final XSLTFunction.XSLTSpecification XSLT_2
XSLT version 2.0


CUSTOM

public static final XSLTFunction.XSLTSpecification CUSTOM
Extends XSLT 1.0 with additional functionality such as MEAN not available until XSLT 2.0.

Method Detail

values

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

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

valueOf

public static XSLTFunction.XSLTSpecification 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
java.lang.NullPointerException - if the argument is null

getVersion

public java.lang.String getVersion()


Copyright 2010 Andrew Leigh. All Rights Reserved.