public static enum Options.traceflag extends Enum<Options.traceflag>
eu.bandm.tools.xslt.base.Options#get_traceflags()
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 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, and as 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.
|
Modifier and Type | Method and Description |
---|---|
static Options.traceflag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.traceflag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.traceflag silent
public static final Options.traceflag justWarnings
public static final Options.traceflag extendedInfo
public static final Options.traceflag showSource
public static final Options.traceflag templateDirs
public static final Options.traceflag globalValues
public static final Options.traceflag resourceFinding
public static final Options.traceflag templateResolution
public static final Options.traceflag templateCall
public static final Options.traceflag tpathEval
public static final Options.traceflag tpathTypes
public static final Options.traceflag tpathFunctions
public static final Options.traceflag testDecisions
public static final Options.traceflag exceptionStackTraces
public static final Options.traceflag elementReducing
public static final Options.traceflag verbatimText
public static Options.traceflag[] values()
for (Options.traceflag c : Options.traceflag.values()) System.out.println(c);
public static Options.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 .