public static enum Parameter.ParameterType extends Enum<Parameter.ParameterType>
Enum Constant and Description |
---|
BINARY
Forces the parameter value to be treated as binary data (e.g.
|
BOOLEAN
Converts the result to a Boolean
|
BYTES
Deprecated.
|
CHARACTER
Forces the parameter value to be treated as character data (e.g.
|
DATE
Converts the result to a Date, by default using formatString
yyyy-MM-dd . |
DATETIME
Converts the result to a Date, by default using formatString
yyyy-MM-dd HH:mm:ss . |
DOMDOC
Renders XML as a DOM document; similar to
node
with the distinction that there is always a common root node (required for XSLT 2.0) |
INPUTSTREAM
Deprecated.
|
INTEGER
Converts the result to an Integer
|
LIST
Deprecated.
|
MAP
Deprecated.
|
NODE
Renders the CONTENTS of the first node as a nodeset
that can be used as such when passed as xslt-parameter (only for XSLT 1.0).
|
NUMBER
Converts the result to a Number, using decimalSeparator and groupingSeparator.
|
STRING
Renders the contents of the first node (in combination with xslt or xpath).
|
TIME
Converts the result to a Date, by default using formatString
HH:mm:ss . |
TIMESTAMP
Similar to
DATETIME , except for the formatString that is yyyy-MM-dd HH:mm:ss.SSS by default |
XML
Renders an xml-nodeset as an xml-string (in combination with xslt or xpath).
|
XMLDATETIME
Converts the result from a XML formatted dateTime to a Date.
|
Modifier and Type | Field and Description |
---|---|
boolean |
requiresTypeConversion |
Modifier and Type | Method and Description |
---|---|
static Parameter.ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.ParameterType STRING
XML
if the xml tags are requiredpublic static final Parameter.ParameterType XML
public static final Parameter.ParameterType NODE
public static final Parameter.ParameterType DOMDOC
node
with the distinction that there is always a common root node (required for XSLT 2.0)public static final Parameter.ParameterType DATE
yyyy-MM-dd
.
When applied as a JDBC parameter, the method setDate() is usedpublic static final Parameter.ParameterType TIME
HH:mm:ss
.
When applied as a JDBC parameter, the method setTime() is usedpublic static final Parameter.ParameterType DATETIME
yyyy-MM-dd HH:mm:ss
.
When applied as a JDBC parameter, the method setTimestamp() is usedpublic static final Parameter.ParameterType TIMESTAMP
DATETIME
, except for the formatString that is yyyy-MM-dd HH:mm:ss.SSS
by defaultpublic static final Parameter.ParameterType XMLDATETIME
public static final Parameter.ParameterType NUMBER
public static final Parameter.ParameterType INTEGER
public static final Parameter.ParameterType BOOLEAN
@ConfigurationWarning(value="use type [BINARY] instead") @Deprecated public static final Parameter.ParameterType INPUTSTREAM
@ConfigurationWarning(value="use type [BINARY] instead") @Deprecated public static final Parameter.ParameterType BYTES
public static final Parameter.ParameterType BINARY
public static final Parameter.ParameterType CHARACTER
@Deprecated public static final Parameter.ParameterType LIST
@Deprecated public static final Parameter.ParameterType MAP
public static Parameter.ParameterType[] values()
for (Parameter.ParameterType c : Parameter.ParameterType.values()) System.out.println(c);
public static Parameter.ParameterType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Frank!Framework. All rights reserved.