com.esri.arcgis.system
Interface IXMLWriter

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IXMLWriter2
All Known Implementing Classes:
IXMLWriter2Proxy, IXMLWriterProxy, XMLWriter

public interface IXMLWriter
extends java.io.Serializable

COM Interface 'IXMLWriter'. Generated 3/19/2015 1:20:57 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to members that control the sequential writing of XML.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID5f50e520_1278_4c7a_937c_ae5874548431
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 java.lang.String lookupNamespace(java.lang.String uri)
          Obtains the declared namespace prefix for a namespace.
 void writeBinary(byte[] value)
          Writes an element value as a binary array.
 void writeBoolean(boolean value)
          Writes an element value as a boolean.
 void writeByte(byte value)
          Writes an element value as a byte.
 void writeCData(java.lang.String cdata)
          Writes a CDATA section.
 void writeDate(java.util.Date value)
          Writes an element value as a date.
 void writeDouble(double value)
          Writes an element value as a double.
 void writeEndTag()
          Writes the ending tag of an element.
 void writeFloat(float value)
          Writes an element value as a float.
 void writeInteger(int value)
          Writes an element value as a long.
 void writeNewLine()
          Writes a newline.
 void writeShort(short value)
          Writes an element value as a short.
 void writeStartTag(java.lang.String localName, java.lang.String uri, IXMLAttributes attributes, IXMLNamespaces namespaces, boolean isEmpty)
          Writes the starting tag of an element.
 void writeTab()
          Writes a tab.
 void writeText(java.lang.String text)
          Writes the text value of an element.
 void writeTo(IStream outputStream)
          Specifies output XML stream.
 void writeVariant(java.lang.Object value)
          Writes an element value as a variant.
 void writeXML(java.lang.String xML)
          Writes raw XML.
 void writeXMLDeclaration()
          Writes the XML document declaration.
 

Field Detail

IID5f50e520_1278_4c7a_937c_ae5874548431

static final int IID5f50e520_1278_4c7a_937c_ae5874548431
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

writeTo

void writeTo(IStream outputStream)
             throws java.io.IOException,
                    AutomationException
Specifies output XML stream.

Parameters:
outputStream - A reference to a com.esri.arcgis.system.IStream (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeStartTag

void writeStartTag(java.lang.String localName,
                   java.lang.String uri,
                   IXMLAttributes attributes,
                   IXMLNamespaces namespaces,
                   boolean isEmpty)
                   throws java.io.IOException,
                          AutomationException
Writes the starting tag of an element.

Parameters:
localName - The localName (in)
uri - The uri (in)
attributes - A reference to a com.esri.arcgis.system.IXMLAttributes (in)
namespaces - A reference to a com.esri.arcgis.system.IXMLNamespaces (in)
isEmpty - The isEmpty (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeText

void writeText(java.lang.String text)
               throws java.io.IOException,
                      AutomationException
Writes the text value of an element.

Parameters:
text - The text (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeCData

void writeCData(java.lang.String cdata)
                throws java.io.IOException,
                       AutomationException
Writes a CDATA section.

Parameters:
cdata - The cdata (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeEndTag

void writeEndTag()
                 throws java.io.IOException,
                        AutomationException
Writes the ending tag of an element.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeBoolean

void writeBoolean(boolean value)
                  throws java.io.IOException,
                         AutomationException
Writes an element value as a boolean.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeByte

void writeByte(byte value)
               throws java.io.IOException,
                      AutomationException
Writes an element value as a byte.

Parameters:
value - An unsigned byte (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeShort

void writeShort(short value)
                throws java.io.IOException,
                       AutomationException
Writes an element value as a short.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeInteger

void writeInteger(int value)
                  throws java.io.IOException,
                         AutomationException
Writes an element value as a long.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeFloat

void writeFloat(float value)
                throws java.io.IOException,
                       AutomationException
Writes an element value as a float.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeDouble

void writeDouble(double value)
                 throws java.io.IOException,
                        AutomationException
Writes an element value as a double.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeDate

void writeDate(java.util.Date value)
               throws java.io.IOException,
                      AutomationException
Writes an element value as a date.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeBinary

void writeBinary(byte[] value)
                 throws java.io.IOException,
                        AutomationException
Writes an element value as a binary array.

Parameters:
value - An unsigned byte (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeVariant

void writeVariant(java.lang.Object value)
                  throws java.io.IOException,
                         AutomationException
Writes an element value as a variant.

Parameters:
value - A Variant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeXML

void writeXML(java.lang.String xML)
              throws java.io.IOException,
                     AutomationException
Writes raw XML.

Parameters:
xML - The xML (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeXMLDeclaration

void writeXMLDeclaration()
                         throws java.io.IOException,
                                AutomationException
Writes the XML document declaration.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeNewLine

void writeNewLine()
                  throws java.io.IOException,
                         AutomationException
Writes a newline.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeTab

void writeTab()
              throws java.io.IOException,
                     AutomationException
Writes a tab.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

lookupNamespace

java.lang.String lookupNamespace(java.lang.String uri)
                                 throws java.io.IOException,
                                        AutomationException
Obtains the declared namespace prefix for a namespace.

Parameters:
uri - The uri (in)
Returns:
The prefix
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.