Package com.icl.saxon.output
Class SaxonOutputKeys
java.lang.Object
com.icl.saxon.output.SaxonOutputKeys
Provides string constants that can be used to set
output properties for a Transformer, or to retrieve
output properties from a Transformer or Templates object.
These keys are private Saxon keys that supplement the standard keys
defined in javax.xml.transform.OutputKeys
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
representation = rep1[;rep2].static final String
indentSpaces = integer.static final String
saxon:next-in-chain = URI.static final String
static final String
include-html-meta-tag = "yes" | "no".static final String
saxon:require-well-formed = yes|no. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic final boolean
isValidOutputKey
(String key) Check that a supplied output key is valid
-
Field Details
-
INDENT_SPACES
indentSpaces = integer.Defines the number of spaces used for indentation of output
- See Also:
-
OMIT_META_TAG
include-html-meta-tag = "yes" | "no".Indicates whether the META tag is to be added to HTML output
- See Also:
-
CHARACTER_REPRESENTATION
representation = rep1[;rep2].Indicates the preferred way of representing non-ASCII characters in HTML and XML output. rep1 is for characters in the range 128-256, rep2 for those above 256.
- See Also:
-
NEXT_IN_CHAIN
saxon:next-in-chain = URI.Indicates that the output is to be piped into another XSLT stylesheet to perform another transformation. The auxiliary property NEXT_IN_CHAIN_BASE_URI records the base URI of the stylesheet element where this attribute was found.
- See Also:
-
NEXT_IN_CHAIN_BASE_URI
- See Also:
-
REQUIRE_WELL_FORMED
saxon:require-well-formed = yes|no.Indicates whether a user-supplied ContentHandler requires the stream of SAX events to be well-formed (that is, to have a single element node and no text nodes as children of the root). The default is "no".
- See Also:
-
-
Constructor Details
-
SaxonOutputKeys
public SaxonOutputKeys()
-
-
Method Details
-
isValidOutputKey
Check that a supplied output key is valid
-