net.sf.saxon
Class FeatureKeys

java.lang.Object
  extended bynet.sf.saxon.FeatureKeys

public class FeatureKeys
extends Object

FeatureKeys defines a set of constants, names of Saxon configuration options which can be supplied to the TransformerFactoryImpl interface

Author:
Michael H. Kay (michael.h.kay@ntlworld.com)

Field Summary
static String ALLOW_EXTERNAL_FUNCTIONS
          ALLOW_EXTERNAL_FUNCTIONS must be a Boolean; it determines whether calls to external functions are allowed
static String DTD_VALIDATION
          DTD_VALIDATION must be a Boolean.
static String LINE_NUMBERING
          LINE_NUMBERING must be a Boolean(); it determines whether line numbers are maintained for the source document
static String MESSAGE_EMITTER_CLASS
          MESSAGE_EMITTER_CLASS must be the class name of an Emitter
static String NAME_POOL
          NAME_POOL must be an instance of net.sf.saxon.om.NamePool
static String OUTPUT_URI_RESOLVER
          OUTPUT_URI_RESOLVER must be an instance of net.sf.saxon.OutputURIResolver
static String RECOVERY_POLICY
          RECOVERY_POLICY must be an Integer: Controller.RECOVER_SILENTLY, Controller.RECOVER_WITH_WARNINGS, or Controller.DO_NOT_RECOVER
static String SCHEMA_VALIDATION
          SCHEMA_VALIDATION must be a Boolean.
static String SOURCE_PARSER_CLASS
          SOURCE_PARSER_CLASS must be the full class name of an XMLReader
static String STYLE_PARSER_CLASS
          STYLE_PARSER_CLASS must be an XMLReader
static String TIMING
          TIMING must be an Boolean; it determines whether basic timing information is output to System.err
static String TRACE_EXTERNAL_FUNCTIONS
          TRACE_EXTERNAL_FUNCTIONS must be a Boolean; it determines whether the loading and binding of extension functions is traced
static String TRACE_LISTENER
          TRACE_LISTENER must be a class that implements net.sf.saxon.trace.TraceListener
static String TREE_MODEL
          TREE_MODEL must be an Integer: Builder.STANDARD_TREE or Builder.TINY_TREE
 
Constructor Summary
FeatureKeys()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ALLOW_EXTERNAL_FUNCTIONS

public static final String ALLOW_EXTERNAL_FUNCTIONS
ALLOW_EXTERNAL_FUNCTIONS must be a Boolean; it determines whether calls to external functions are allowed

See Also:
Constant Field Values

TRACE_EXTERNAL_FUNCTIONS

public static final String TRACE_EXTERNAL_FUNCTIONS
TRACE_EXTERNAL_FUNCTIONS must be a Boolean; it determines whether the loading and binding of extension functions is traced

See Also:
Constant Field Values

TIMING

public static final String TIMING
TIMING must be an Boolean; it determines whether basic timing information is output to System.err

See Also:
Constant Field Values

TREE_MODEL

public static final String TREE_MODEL
TREE_MODEL must be an Integer: Builder.STANDARD_TREE or Builder.TINY_TREE

See Also:
Constant Field Values

TRACE_LISTENER

public static final String TRACE_LISTENER
TRACE_LISTENER must be a class that implements net.sf.saxon.trace.TraceListener

See Also:
Constant Field Values

LINE_NUMBERING

public static final String LINE_NUMBERING
LINE_NUMBERING must be a Boolean(); it determines whether line numbers are maintained for the source document

See Also:
Constant Field Values

RECOVERY_POLICY

public static final String RECOVERY_POLICY
RECOVERY_POLICY must be an Integer: Controller.RECOVER_SILENTLY, Controller.RECOVER_WITH_WARNINGS, or Controller.DO_NOT_RECOVER

See Also:
Constant Field Values

MESSAGE_EMITTER_CLASS

public static final String MESSAGE_EMITTER_CLASS
MESSAGE_EMITTER_CLASS must be the class name of an Emitter

See Also:
Constant Field Values

SOURCE_PARSER_CLASS

public static final String SOURCE_PARSER_CLASS
SOURCE_PARSER_CLASS must be the full class name of an XMLReader

See Also:
Constant Field Values

STYLE_PARSER_CLASS

public static final String STYLE_PARSER_CLASS
STYLE_PARSER_CLASS must be an XMLReader

See Also:
Constant Field Values

NAME_POOL

public static final String NAME_POOL
NAME_POOL must be an instance of net.sf.saxon.om.NamePool

See Also:
Constant Field Values

OUTPUT_URI_RESOLVER

public static final String OUTPUT_URI_RESOLVER
OUTPUT_URI_RESOLVER must be an instance of net.sf.saxon.OutputURIResolver

See Also:
Constant Field Values

DTD_VALIDATION

public static final String DTD_VALIDATION
DTD_VALIDATION must be a Boolean. This determines whether source documents should be parsed with DTD-validation enabled.

See Also:
Constant Field Values

SCHEMA_VALIDATION

public static final String SCHEMA_VALIDATION
SCHEMA_VALIDATION must be a Boolean. This determines whether source documents should be parsed with schema-validation enabled.

See Also:
Constant Field Values
Constructor Detail

FeatureKeys

public FeatureKeys()