public static enum BatchOptions.traceflag extends Enum<BatchOptions.traceflag>
eu.bandm.tools.d2d2.base.BatchOptions#get_txslTraceFlags()
Enum Constant and Description |
---|
elementReducing
This value indicates: Trace the reduce step of a
collected result element, ie.
|
exceptionStackTraces
This value indicates: Print the java stack trace
in case of exceptions.
|
extendedInfo
This value indicates: Print additional
information with most messages.
|
globalValues
This value indicates: Trace the calculation of
all global values (parameters and variables).
|
justWarnings
This value indicates: Suppress all log messages.
|
resourceFinding
This value indicates: Trace the resolution of
URLs/URIs/file names and the access to resource objets.
|
showSource
This value indicates: Display source text as soon
as parsed, for additional information.
|
silent
This value indicates: Suppress all log messages,
even warnings.
|
templateCall
This value indicates: Trace parameter set up and
code executon start for template calls and applies.
|
templateDirs
This value indicates: Dump the template
directories as soon they are filled.
|
templateResolution
This value indicates: Trace finding of templates.
|
testDecisions
This value indicates: Trace the deciding
expressions in xsl:if and xsl:choose expressions.
|
tpathEval
This value indicates: Trace evaluation of all
tpath expressions.
|
tpathFunctions
This value indicates: Trace calls, parameters and
results of functions called from tpath expressions.
|
tpathTypes
This value indicates: Print the results of type
checking tpath expressions.
|
verbatimText
This value indicates: Dumps all verbatim inserted
XML fragments.
|
writeIntermediate
This value indicates: Write out intermediate
files when collecting xslt code.
|
Modifier and Type | Method and Description |
---|---|
static BatchOptions.traceflag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BatchOptions.traceflag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchOptions.traceflag silent
public static final BatchOptions.traceflag justWarnings
public static final BatchOptions.traceflag extendedInfo
public static final BatchOptions.traceflag showSource
public static final BatchOptions.traceflag templateDirs
public static final BatchOptions.traceflag globalValues
public static final BatchOptions.traceflag resourceFinding
public static final BatchOptions.traceflag templateResolution
public static final BatchOptions.traceflag templateCall
public static final BatchOptions.traceflag tpathEval
public static final BatchOptions.traceflag tpathTypes
public static final BatchOptions.traceflag tpathFunctions
public static final BatchOptions.traceflag testDecisions
public static final BatchOptions.traceflag exceptionStackTraces
public static final BatchOptions.traceflag elementReducing
public static final BatchOptions.traceflag verbatimText
public static final BatchOptions.traceflag writeIntermediate
public static BatchOptions.traceflag[] values()
for (BatchOptions.traceflag c : BatchOptions.traceflag.values()) System.out.println(c);
public static BatchOptions.traceflag 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 nullsee also the complete user documentation .