### writeStartTagStart Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/XmlWriter.html Abstract method to start writing an XML start tag, optionally with a prefix. It can throw IOException or XMLStreamException if name checking is enabled and the name is invalid. ```Java public abstract void writeStartTagStart(String prefix, String localName) throws IOException, XMLStreamException ``` -------------------------------- ### writeStartTagStart (with prefix) Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Writes the start of an XML start tag, including a prefix. Can throw XMLStreamException if name checking is enabled and the name is invalid. ```Java public void writeStartTagStart(String prefix, String localName) throws IOException, XMLStreamException ``` -------------------------------- ### writePIStart Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Writes the start of a processing instruction. ```Java public final void writePIStart(String target, boolean addSpace) throws IOException ``` -------------------------------- ### writePIStart Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/EncodingXmlWriter.html Starts a processing instruction. ```java public final void writePIStart(String target, boolean addSpace) throws IOException ``` -------------------------------- ### writeStartTagStart (without prefix) Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Writes the start of an XML start tag without a prefix. Can throw XMLStreamException if name checking is enabled and the name is invalid. ```Java public void writeStartTagStart(String name) throws XMLStreamException ``` -------------------------------- ### start Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/WstxBundleActivator.html Method called on activation. Registers all providers. ```Java public void start(org.osgi.framework.BundleContext ctxt) ``` -------------------------------- ### withStartElement Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sr/ElemCallback.html Abstract method to handle the start of an element. ```Java public abstract Object withStartElement(Location loc, QName name, BaseNsContext nsCtxt, ElemAttrs attrs, boolean wasEmpty) ``` -------------------------------- ### writeCommentStart Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/EncodingXmlWriter.html Starts a comment section. ```java public final void writeCommentStart() throws IOException ``` -------------------------------- ### withStartElement method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/evt/DefaultEventAllocator.html The withStartElement method for handling start elements. ```Java public java.lang.Object withStartElement(javax.xml.stream.Location loc, javax.xml.namespace.QName name, com.ctc.wstx.util.BaseNsContext nsCtxt, com.ctc.wstx.sr.ElemAttrs attrs, boolean wasEmpty) ``` -------------------------------- ### writeCDataStart Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/EncodingXmlWriter.html Starts a CDATA section. ```java public final void writeCDataStart() throws IOException ``` -------------------------------- ### Constructor Detail Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DFAState.html Details of the DFAState constructor. ```Java public DFAState(int index, [BitSet](https://docs.oracle.com/javase/8/docs/api/java/util/BitSet.html?is-external=true "class or interface in java.util") tokenSet) ``` -------------------------------- ### writeCDataContent Method (char[], start, length) Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/ISOLatin1XmlWriter.html Writes CDATA content specified by a character buffer, start index, and length. ```Java protected int writeCDataContent(char[] cbuf, int start, int len) throws IOException ``` -------------------------------- ### AttributeCollector.throwDupAttr Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sr/class-use/InputProblemReporter.html Method that can be used to get the specified attribute value, by getting it written using Writer passed in. ```Java AttributeCollector.throwDupAttr(InputProblemReporter rep, int index) ``` -------------------------------- ### Method Detail: createAll Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/ValidationSchemaFactoryProviderImpl.html Method to create all ValidationSchemaFactoryProviderImpl instances. ```Java public static ValidationSchemaFactoryProviderImpl[] createAll() ``` -------------------------------- ### createStartElement Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/stax/WstxEventFactory.html Creates a StartElement event with the given QName, attributes, and namespaces. Specified by the superclass. ```Java protected StartElement createStartElement(QName name, Iterator attr, Iterator namespaces) ``` -------------------------------- ### saveContext Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/io/WstxInputSource.html Method Reader calls when this input source is being stored, when a nested input source gets used instead (due to entity expansion). Needs to get location info from Reader and store it in this Object. ```Java public abstract void saveContext(WstxInputData reader) ``` -------------------------------- ### Method Detail: calcNext Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DFAState.html Calculates the next states based on token names and sets. ```Java public void calcNext([PrefixedName](../../../../com/ctc/wstx/util/PrefixedName.html "class in com.ctc.wstx.util")[] tokenNames, [BitSet](https://docs.oracle.com/javase/8/docs/api/java/util/BitSet.html?is-external=true "class or interface in java.util")[] tokenFPs, [List](https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true "class or interface in java.util")<[DFAState](../../../../com/ctc/wstx/dtd/DFAState.html "class in com.ctc.wstx.dtd")> stateList, [Map](https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true "class or interface in java.util")<[BitSet](https://docs.oracle.com/javase/8/docs/api/java/util/BitSet.html?is-external=true "class or interface in java.util"),[DFAState](../../../../com/ctc/wstx/dtd/DFAState.html "class in com.ctc.wstx.dtd")> stateMap) ``` -------------------------------- ### getSaxFactory Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/msv/BaseSchemaFactory.html Gets the SAXParserFactory. ```Java protected static SAXParserFactory getSaxFactory() ``` -------------------------------- ### Method Detail: doGetPrefixes Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sr/CompactNsContext.html Signature for the doGetPrefixes method. ```java doGetPrefixes(String nsURI) ``` -------------------------------- ### writeStartElement (String nsURI, String localName) Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dom/WstxDOMWrappingWriter.html Writes the start of an element with the given namespace URI and local name. ```java public void writeStartElement(String nsURI, ``` -------------------------------- ### getPrefix Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/util/PrefixedName.html Gets the prefix of the PrefixedName. ```Java public String getPrefix() ``` -------------------------------- ### getPrefix Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/SimpleOutputElement.html Gets the prefix of the element. ```Java public [String](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true "class or interface in java.lang") getPrefix() ``` -------------------------------- ### getParent Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/SimpleOutputElement.html Gets the parent SimpleOutputElement. ```Java public [SimpleOutputElement](../../../../com/ctc/wstx/sw/SimpleOutputElement.html "class in com.ctc.wstx.sw") getParent() ``` -------------------------------- ### Constructor Detail Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sr/CompactNsContext.html Details of the CompactNsContext constructor. ```java public CompactNsContext(Location loc, String[] namespaces, int nsLen, int firstLocal) ``` -------------------------------- ### Method Detail: add Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/util/SimpleCache.html Details of the add method. ```Java public void add(K key, V value) ``` -------------------------------- ### writeStartTagEnd Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Writes the end of an XML start tag. ```Java public void writeStartTagEnd() throws IOException ``` -------------------------------- ### createOutputFactory Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/OutputFactoryProviderImpl.html Creates and returns an XMLOutputFactory2 instance. ```java public org.codehaus.stax2.XMLOutputFactory2 createOutputFactory() ``` -------------------------------- ### BufferingXmlWriter getWriter Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Gets the underlying writer. ```Java protected Writer getWriter() ``` -------------------------------- ### Method Detail: getProperties Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/ValidationSchemaFactoryProviderImpl.html Method to get the properties. ```Java public Properties getProperties() ``` -------------------------------- ### Method Detail: toString Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DFAState.html Returns a string representation of the DFAState. ```Java public [String](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true "class or interface in java.lang") toString() ``` -------------------------------- ### getStream Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/io/UTF32Reader.html Gets the underlying input stream. ```Java protected java.io.InputStream getStream() ``` -------------------------------- ### Constructor Detail Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/msv/W3CMultiSchemaFactory.html Details for the W3CMultiSchemaFactory constructor. ```Java public W3CMultiSchemaFactory() ``` -------------------------------- ### createQName Method (URI, localName, prefix) Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/stax/WstxEventFactory.html Creates a QName with the given namespace URI, local name, and prefix. Specified by the superclass. ```Java protected QName createQName(String nsURI, String localName, String prefix) ``` -------------------------------- ### Method Detail Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/exc/WstxUnexpectedCharException.html Method to get the unexpected character. ```Java public char getChar() ``` -------------------------------- ### getReplacementChars Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/ent/EntityDecl.html Gets the replacement characters for the entity. ```Java public abstract char[] getReplacementChars() ``` -------------------------------- ### writeStartTagEmptyEnd Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/XmlWriter.html Abstract method to end writing an empty XML start tag. It can throw IOException. ```Java public abstract void writeStartTagEmptyEnd() throws IOException ``` -------------------------------- ### getPublicId Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/ent/ExtEntity.html Method to get the public ID. ```Java public String getPublicId() ``` -------------------------------- ### Method Detail: constructDFA Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DFAState.html Static method to construct a DFAState. ```Java public static [DFAState](../../../../com/ctc/wstx/dtd/DFAState.html "class in com.ctc.wstx.dtd") constructDFA([ContentSpec](../../../../com/ctc/wstx/dtd/ContentSpec.html "class in com.ctc.wstx.dtd") rootSpec) ``` -------------------------------- ### getName Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/TokenModel.html Gets the PrefixedName associated with this TokenModel. ```java public PrefixedName getName() ``` -------------------------------- ### Method Summary - constructInstance Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/util/WordResolver.html Tries to construct an instance given an ordered set of words. ```Java static WordResolver constructInstance(TreeSet wordSet) ``` -------------------------------- ### getProperty Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DTDSchemaFactory.html Gets a property from this schema factory. ```Java public Object getProperty(String propName) ``` -------------------------------- ### Constructor Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/OutputFactoryProviderImpl.html Default constructor for OutputFactoryProviderImpl. ```java public OutputFactoryProviderImpl() ``` -------------------------------- ### Static method to create all ValidationSchemaFactoryProviderImpl instances Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/osgi/class-use/ValidationSchemaFactoryProviderImpl.html This method in the com.ctc.wstx.osgi package returns an array of ValidationSchemaFactoryProviderImpl instances. ```Java static ValidationSchemaFactoryProviderImpl[] ValidationSchemaFactoryProviderImpl.createAll() ``` -------------------------------- ### Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/cfg/ErrorConsts.html A method to get a description for a token type. ```java public static String tokenTypeDesc(int type) ``` -------------------------------- ### Method Detail: getIndex Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/dtd/DFAState.html Gets the index of the DFAState. ```Java public int getIndex() ``` -------------------------------- ### writeStartTagEmptyEnd Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sw/BufferingXmlWriter.html Writes the end of an empty XML start tag. ```Java public void writeStartTagEmptyEnd() throws IOException ``` -------------------------------- ### Constructor Detail Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/util/SimpleCache.html Details of the SimpleCache constructor. ```Java public SimpleCache(int maxSize) ``` -------------------------------- ### getStartLocation Method Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/sr/StreamScanner.html Returns the starting location of the current event. ```Java public org.codehaus.stax2.XMLStreamLocation2 getStartLocation() ``` -------------------------------- ### Method Summary Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/io/ReaderBootstrapper.html Lists the methods available in the ReaderBootstrapper class, categorized by static, instance, and concrete methods. ```Java Reader bootstrapInput(ReaderConfig cfg, boolean mainDoc, int xmlVersion) ``` ```Java protected int checkKeyword(String exp) ``` ```Java int getInputColumn() ``` ```Java String getInputEncoding() ``` ```Java int getInputTotal() ``` ```Java static ReaderBootstrapper getInstance(String pubId, SystemId sysId, Reader r, String appEncoding) ``` ```Java protected Location getLocation() ``` ```Java protected int ``` -------------------------------- ### Method Summary Source: https://github.com/fasterxml/woodstox/blob/main/docs/javadoc/7.2/com/ctc/wstx/util/InternCache.html Provides a summary of the methods available in the InternCache class, categorized by static, instance, and concrete methods. ```Java static InternCache getInstance() String intern(String input) ```