Package org.apache.tools.ant.taskdefs
Enum XSLTProcess.ParamType
- java.lang.Object
- 
- java.lang.Enum<XSLTProcess.ParamType>
- 
- org.apache.tools.ant.taskdefs.XSLTProcess.ParamType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<XSLTProcess.ParamType>,- java.lang.constant.Constable
 - Enclosing class:
- XSLTProcess
 
 public static enum XSLTProcess.ParamType extends java.lang.Enum<XSLTProcess.ParamType> Enum for types of the parameter expression.The expression can be: - primitive type that will be parsed from the string value e.g. Integer.parseInt(java.lang.String)
- XPath expression that will be evaluated (outside of the transformed document - on empty one) and casted to given type. Inside XPath expressions the Ant variables (properties) can be used (as XPath variables - e.g. $variable123). n.b. placeholders in form of ${variable123} will be substituted with their values before evaluating the XPath expression (so it can be used for dynamic XPath function names and other hacks).
 The parameter will be then passed to the XSLT template. Default type (if omitted) is primitive String. So if the expression is e.g "true" with no type, in XSLT it will be only a text string, not true boolean. - Since:
- Ant 1.9.3
- See Also:
- XSLTProcess.Param.setType(java.lang.String),- XSLTProcess.Param.setExpression(java.lang.String)
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BOOLEANDOUBLEINTLONGSTRINGXPATH_BOOLEANXPATH_NODEXPATH_NODESETXPATH_NUMBERXPATH_STRING
 - 
Field SummaryFields Modifier and Type Field Description static java.util.Map<XSLTProcess.ParamType,javax.xml.namespace.QName>XPATH_TYPES
 - 
Method SummaryModifier and Type Method Description static XSLTProcess.ParamTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static XSLTProcess.ParamType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
STRINGpublic static final XSLTProcess.ParamType STRING 
 - 
BOOLEANpublic static final XSLTProcess.ParamType BOOLEAN 
 - 
INTpublic static final XSLTProcess.ParamType INT 
 - 
LONGpublic static final XSLTProcess.ParamType LONG 
 - 
DOUBLEpublic static final XSLTProcess.ParamType DOUBLE 
 - 
XPATH_STRINGpublic static final XSLTProcess.ParamType XPATH_STRING 
 - 
XPATH_BOOLEANpublic static final XSLTProcess.ParamType XPATH_BOOLEAN 
 - 
XPATH_NUMBERpublic static final XSLTProcess.ParamType XPATH_NUMBER 
 - 
XPATH_NODEpublic static final XSLTProcess.ParamType XPATH_NODE 
 - 
XPATH_NODESETpublic static final XSLTProcess.ParamType XPATH_NODESET 
 
- 
 - 
Field Detail- 
XPATH_TYPESpublic static final java.util.Map<XSLTProcess.ParamType,javax.xml.namespace.QName> XPATH_TYPES 
 
- 
 - 
Method Detail- 
valuespublic static XSLTProcess.ParamType[] values() Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static XSLTProcess.ParamType 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
 
 
- 
 
-