
net.sf.saxon.trace.TraceLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
package net.sf.saxon.trace;
public class TraceLevel {
/** No tracing **/
public static final int NONE = 0;
/** Function and template calls **/
public static final int LOW = 1;
/** Instructions (or the equivalent in XQuery) */
public static final int NORMAL = 2;
/** All expressions */
public static final int HIGH = 3;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy