org.apache.axiom.om.util
Interface StAXWriterConfiguration
public interface StAXWriterConfiguration
Defines a particular StAX writer configuration. An implementation of this
interface must satisfy the following requirements:
- It MUST be immutable.
- It MUST either be a singleton or properly implement
Object.equals(Object) and Object.hashCode().
These two requirements ensure that instances of this interface may be used as
cache keys.
- See Also:
StAXParserConfiguration
DEFAULT
static final StAXWriterConfiguration DEFAULT
- The default configuration.
configure
XMLOutputFactory configure(XMLOutputFactory factory,
StAXDialect dialect)
- Apply the configuration to the given factory. The method MAY optionally
wrap the factory.
- Parameters:
factory - the factory to configuredialect - The dialect of the StAX implementation as detected by
StAXDialectDetector. The implementation may use this
information to configure implementation specific settings.
- Returns:
- The configured factory. This may be the original factory (if the
implementation only changes the factory properties), or a
wrapper.
Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.