Class SaxonOutputKeys
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
byte-order-mark = yes|no.static final String
representation = rep1[;rep2].static final String
escape-uri-attributes = "yes" | "no".static final String
Property used internally to identify the XSLT implicit result documentstatic final String
include-content-type = "yes" | "no".static final String
indentSpaces = integer.static final String
saxon:next-in-chain = URI.static final String
static final String
normalization-form = NFC|NFD|NFKC|NFKD|non.static final String
saxon:require-well-formed = yes|no.static final String
stylesheet-version.static final String
supply-source-locator = yes|no.static final String
undeclare-prefixes = "yes" | "no".static final String
use-character-map = list-of-qnames.static final String
wrap="yes"|"no". -
Method Summary
Modifier and TypeMethodDescriptionstatic final void
checkOutputProperty
(String key, String value, NameChecker checker) Check that a supplied output property is valid.
-
Field Details
-
INDENT_SPACES
indentSpaces = integer.Defines the number of spaces used for indentation of output
- See Also:
-
STYLESHEET_VERSION
stylesheet-version. This serialization parameter is set automatically by the XSLT processor to the value of the version attribute on the principal stylesheet module.- See Also:
-
USE_CHARACTER_MAPS
use-character-map = list-of-qnames.Defines the character maps used in this output definition. The QNames are represented in Clark notation as {uri}local-name.
- See Also:
-
INCLUDE_CONTENT_TYPE
include-content-type = "yes" | "no". This attribute is defined in XSLT 2.0Indicates whether the META tag is to be added to HTML output
- See Also:
-
UNDECLARE_PREFIXES
undeclare-prefixes = "yes" | "no". This attribute is defined in XSLT 2.0Indicates XML 1.1 namespace undeclarations are to be output when required
- See Also:
-
ESCAPE_URI_ATTRIBUTES
escape-uri-attributes = "yes" | "no". This attribute is defined in XSLT 2.0Indicates whether HTML attributes of type URI are to be URI-escaped
- 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:
-
BYTE_ORDER_MARK
byte-order-mark = yes|no.Indicates whether UTF-8/UTF-16 output is to start with a byte order mark. Values are "yes" or "no", default is "no"
- See Also:
-
NORMALIZATION_FORM
normalization-form = NFC|NFD|NFKC|NFKD|non.Indicates that a given Unicode normalization form (or no normalization) is required.
- See Also:
-
SUPPLY_SOURCE_LOCATOR
supply-source-locator = yes|no.If set to "yes", and the output is being sent to a SAXResult (or to a user-supplied content handler), indicates that the SAX Locator made available to the ContentHandler will contain information about the location of the context node in the source document as well as the location in the stylesheet or query.
- 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:
-
WRAP
wrap="yes"|"no".This property is only available in the XQuery API. The value "yes" indicates that the result sequence produced by the query is to be wrapped, that is, each item in the result is represented as a separate element. This format allows any sequence to be represented as an XML document, including for example sequences consisting of parentless attribute nodes.
- See Also:
-
IMPLICIT_RESULT_DOCUMENT
Property used internally to identify the XSLT implicit result document- See Also:
-
-
Method Details
-
checkOutputProperty
public static final void checkOutputProperty(String key, String value, NameChecker checker) throws DynamicError Check that a supplied output property is valid.- Parameters:
key
- the name of the propertyvalue
- the value of the property. This may be set to null, in which casechecker
-- Throws:
DynamicError
-