javax.xml.transform
Class OutputKeys

java.lang.Object
  extended by javax.xml.transform.OutputKeys

public class OutputKeys
extends Object

Constants for XSLT output attributes.


Field Summary
static String CDATA_SECTION_ELEMENTS
          Whitespace-separated list of element names for which text children should be output as CDATA sections.
static String DOCTYPE_PUBLIC
          The public ID to output in the doctype declaration.
static String DOCTYPE_SYSTEM
          The system ID to output in the doctype declaration.
static String ENCODING
          The preferred output character encoding.
static String INDENT
          Whether to indent the result tree (yes or no).
static String MEDIA_TYPE
          The MIME content type of the output data.
static String METHOD
          The output method (xml, html, or text).
static String OMIT_XML_DECLARATION
          Whether not to output an XML declaration (yes or no).
static String STANDALONE
          Whether to output a standalone document declaration (yes or no).
static String VERSION
          The version of the output method.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

METHOD

public static final String METHOD
The output method (xml, html, or text).

See Also:
Constant Field Values

VERSION

public static final String VERSION
The version of the output method.

See Also:
Constant Field Values

ENCODING

public static final String ENCODING
The preferred output character encoding.

See Also:
Constant Field Values

OMIT_XML_DECLARATION

public static final String OMIT_XML_DECLARATION
Whether not to output an XML declaration (yes or no).

See Also:
Constant Field Values

STANDALONE

public static final String STANDALONE
Whether to output a standalone document declaration (yes or no).

See Also:
Constant Field Values

DOCTYPE_PUBLIC

public static final String DOCTYPE_PUBLIC
The public ID to output in the doctype declaration.

See Also:
Constant Field Values

DOCTYPE_SYSTEM

public static final String DOCTYPE_SYSTEM
The system ID to output in the doctype declaration.

See Also:
Constant Field Values

CDATA_SECTION_ELEMENTS

public static final String CDATA_SECTION_ELEMENTS
Whitespace-separated list of element names for which text children should be output as CDATA sections.

See Also:
Constant Field Values

INDENT

public static final String INDENT
Whether to indent the result tree (yes or no).

See Also:
Constant Field Values

MEDIA_TYPE

public static final String MEDIA_TYPE
The MIME content type of the output data.

See Also:
Constant Field Values