Package eu.bandm.tools.xslt.base
Enum Class Options.traceflag
- All Implemented Interfaces:
Serializable
,Comparable<Options.traceflag>
,java.lang.constant.Constable
- Enclosing class:
- Options
This enum type indicates: Switch on/off different
trace outputs individually.
Source generated from a command line options specification.
For details see the option which uses this enumeration type, as documented at
Options.get_traceflags_0()
Created on 2024-09-15_20h24m36
by program bandm/metatools/option/compiler, version 2.1
command line =
java bandm/metatools/option/compiler Options.xml eu.bandm.tools.xslt.base Options GuiOptions $(HOME)/metatools/src
by program bandm/metatools/option/compiler, version 2.1
command line =
java bandm/metatools/option/compiler Options.xml eu.bandm.tools.xslt.base Options GuiOptions $(HOME)/metatools/src
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis value indicates: Trace the reduce step of a collected result element, ie.This value indicates: Print the java stack trace in case of exceptions.This value indicates: Print additional information with most messages.This value indicates: Trace calculation of all global values (top-level parameters and variables).This value indicates: Suppress all log messages.This value indicates: Trace the resolution of URLs/URIs/file names and the access to resource objects.This value indicates: Display source text as soon as parsed, and as additional information.This value indicates: Suppress all log messages, even warnings.This value indicates: Trace parameter set up and code executon start for template calls and applies.This value indicates: Dump the template directories as soon they are filled.This value indicates: Trace finding of templates.This value indicates: Trace the deciding expressions in xsl:if and xsl:choose expressions.This value indicates: Trace evaluation of all tpath expressions.This value indicates: Trace calls, parameters, and results of functions called from tpath expressions.This value indicates: Print the results of type checking tpath expressions.This value indicates: Trace assignments to variables.This value indicates: Dumps all verbatim inserted XML fragments. -
Method Summary
Modifier and TypeMethodDescriptionstatic Options.traceflag
Returns the enum constant of this class with the specified name.static Options.traceflag[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
silent
This value indicates: Suppress all log messages, even warnings. Print only errors. -
justWarnings
This value indicates: Suppress all log messages. Print errors and warnings. (Overrides "silent"). -
extendedInfo
This value indicates: Print additional information with most messages. -
showSource
This value indicates: Display source text as soon as parsed, and as additional information. -
templateDirs
This value indicates: Dump the template directories as soon they are filled. -
globalValues
This value indicates: Trace calculation of all global values (top-level parameters and variables). -
resourceFinding
This value indicates: Trace the resolution of URLs/URIs/file names and the access to resource objects. -
templateResolution
This value indicates: Trace finding of templates. Includes xsl:for-each application. -
templateCall
This value indicates: Trace parameter set up and code executon start for template calls and applies. -
tpathEval
This value indicates: Trace evaluation of all tpath expressions. -
tpathTypes
This value indicates: Print the results of type checking tpath expressions. -
tpathFunctions
This value indicates: Trace calls, parameters, and results of functions called from tpath expressions. -
varAssignment
This value indicates: Trace assignments to variables. -
testDecisions
This value indicates: Trace the deciding expressions in xsl:if and xsl:choose expressions. -
exceptionStackTraces
This value indicates: Print the java stack trace in case of exceptions. -
elementReducing
This value indicates: Trace the reduce step of a collected result element, ie. the call of the tdom semi-parser. -
verbatimText
This value indicates: Dumps all verbatim inserted XML fragments.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-