public interface IXMLStream
extends java.io.Serializable
Description: 'Provides access to members that control an in-memory XML stream.' 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 =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IID498a5f91_65d1_4a25_ad2b_462e7df8b358 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
loadFromBytes(byte[] bytes)
Loads from a UTF-8 byte array.
|
void |
loadFromFile(java.lang.String filePath)
Loads from a file path.
|
void |
loadFromString(java.lang.String xML)
Loads from a string.
|
void |
reset()
Resets the stream to the beginning.
|
byte[] |
saveToBytes()
Saves to a UTF-8 byte array.
|
void |
saveToFile(java.lang.String filePath)
Saves to a file path.
|
java.lang.String |
saveToString()
Saves to a string.
|
static final int IID498a5f91_65d1_4a25_ad2b_462e7df8b358
static final int xxDummy
static final java.lang.String IID
void loadFromString(java.lang.String xML) throws java.io.IOException, AutomationException
xML
- The xML (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void loadFromFile(java.lang.String filePath) throws java.io.IOException, AutomationException
filePath
- The filePath (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void loadFromBytes(byte[] bytes) throws java.io.IOException, AutomationException
bytes
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.java.lang.String saveToString() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void saveToFile(java.lang.String filePath) throws java.io.IOException, AutomationException
filePath
- The filePath (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.byte[] saveToBytes() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void reset() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.