Description: 'Provides access to members that control the sequential writing of JSON.' 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 =
public class IJSONWriterProxy extends com.esri.arcgis.interop.Dispatch implements IJSONWriter, java.io.Serializable
Modifier and Type | Field and Description |
---|---|
boolean |
noncastable
Deprecated.
|
static java.lang.Class |
targetClass
Deprecated.
|
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
IID, IID408cd30c_b7a6_4793_a07c_4181035c66e7
Modifier | Constructor and Description |
---|---|
|
IJSONWriterProxy()
Deprecated.
For internal use only
|
|
IJSONWriterProxy(java.lang.Object obj)
Deprecated.
|
protected |
IJSONWriterProxy(java.lang.Object obj,
java.lang.String iid)
Deprecated.
|
|
IJSONWriterProxy(java.lang.String CLSID,
java.lang.String host,
com.esri.arcgis.interop.AuthInfo authInfo)
Deprecated.
|
protected |
IJSONWriterProxy(java.lang.String CLSID,
java.lang.String iid,
java.lang.String host,
com.esri.arcgis.interop.AuthInfo authInfo)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
addListener(java.lang.String iidStr,
java.lang.Object theListener,
java.lang.Object theSource)
Deprecated.
Adds a Java object to be a listener for a specific kind of event generated by the COM object.
|
void |
endArray()
Deprecated.
Ends an array.
|
void |
endObject()
Deprecated.
Ends writing of an object.
|
IStream |
getStream()
Deprecated.
Obtains underlying stream.
|
byte[] |
getStringBuffer()
Deprecated.
Obtains copy of string buffer.
|
void |
removeListener(java.lang.String iidStr,
java.lang.Object theListener)
Deprecated.
Removes a Java object as a listener to events generated by a COM object.
|
void |
setFormatted(boolean value)
Deprecated.
Writes 'pretty' formatting on or off.
|
void |
setIndent(int value)
Deprecated.
Writes indent for 'pretty' formatting.
|
void |
startArray(java.lang.String name)
Deprecated.
Starts an array.
|
void |
startObject(java.lang.String name)
Deprecated.
Starts writing an object.
|
void |
writeBinary(java.lang.String name,
byte[] value)
Deprecated.
Writes a byte array.
|
void |
writeBinaryVal(byte[] value)
Deprecated.
Writes a byte array.
|
void |
writeBoolean(java.lang.String name,
boolean value)
Deprecated.
Writes a boolean.
|
void |
writeBooleanVal(boolean value)
Deprecated.
Writes a boolean in array.
|
void |
writeByte(java.lang.String name,
byte value)
Deprecated.
Writes a byte.
|
void |
writeByteVal(byte value)
Deprecated.
Writes a byte in array.
|
void |
writeDate(java.lang.String name,
java.util.Date value,
boolean asString)
Deprecated.
Writes a date.
|
void |
writeDateVal(java.util.Date value,
boolean asString)
Deprecated.
Writes a date in array.
|
void |
writeDouble(java.lang.String name,
double value)
Deprecated.
Writes a double.
|
void |
writeDoubleVal(double value)
Deprecated.
Writes a double in array.
|
void |
writeFloat(java.lang.String name,
float value)
Deprecated.
Writes a float.
|
void |
writeFloatVal(float value)
Deprecated.
Writes a float in array.
|
void |
writeInteger(java.lang.String name,
int value)
Deprecated.
Writes an integer.
|
void |
writeIntegerVal(int value)
Deprecated.
Writes an integer in array.
|
void |
writeNull(java.lang.String name)
Deprecated.
Writes null property.
|
void |
writeNullVal()
Deprecated.
Writes null value in array.
|
void |
writeShort(java.lang.String name,
short value)
Deprecated.
Writes a short.
|
void |
writeShortVal(short value)
Deprecated.
Writes a short int in array.
|
void |
writeString(java.lang.String name,
java.lang.String value)
Deprecated.
Writes a string property.
|
void |
writeStringVal(java.lang.String value)
Deprecated.
Writes a string in array.
|
void |
writeTo(IStream outputStream)
Deprecated.
Specifies output JSON stream.
|
void |
writeToString()
Deprecated.
Redirects writing to internal string buffer.
|
void |
writeVariant(java.lang.String name,
java.lang.Object value)
Deprecated.
Writes a variant valued property.
|
void |
writeVariantVal(java.lang.Object value)
Deprecated.
Writes a variant in array.
|
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
public static final java.lang.Class targetClass
public boolean noncastable
public IJSONWriterProxy(java.lang.String CLSID, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo) throws java.net.UnknownHostException, java.io.IOException
java.net.UnknownHostException
java.io.IOException
public IJSONWriterProxy()
public IJSONWriterProxy(java.lang.Object obj) throws java.io.IOException
java.io.IOException
protected IJSONWriterProxy(java.lang.Object obj, java.lang.String iid) throws java.io.IOException
java.io.IOException
protected IJSONWriterProxy(java.lang.String CLSID, java.lang.String iid, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo) throws java.io.IOException
java.io.IOException
public void addListener(java.lang.String iidStr, java.lang.Object theListener, java.lang.Object theSource) throws java.io.IOException
com.esri.arcgis.interop.Dispatch
addListener
in class com.esri.arcgis.interop.Dispatch
iidStr
- the ID of the outgoing interface, implemented by the listenertheListener
- the object to be informed of the eventstheSource
- the proxy class that represents the COM class that is the source of the eventsjava.io.IOException
public void removeListener(java.lang.String iidStr, java.lang.Object theListener) throws java.io.IOException
com.esri.arcgis.interop.Dispatch
removeListener
in class com.esri.arcgis.interop.Dispatch
iidStr
- the ID of the outgoing interface, implemented by the listenertheListener
- the object that no longer wishes to be informed of the eventsjava.io.IOException
public void writeTo(IStream outputStream) throws java.io.IOException, AutomationException
writeTo
in interface IJSONWriter
outputStream
- A reference to a com.esri.arcgis.system.IStream (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeToString() throws java.io.IOException, AutomationException
writeToString
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public byte[] getStringBuffer() throws java.io.IOException, AutomationException
getStringBuffer
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IStream getStream() throws java.io.IOException, AutomationException
getStream
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setFormatted(boolean value) throws java.io.IOException, AutomationException
setFormatted
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setIndent(int value) throws java.io.IOException, AutomationException
setIndent
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void startObject(java.lang.String name) throws java.io.IOException, AutomationException
startObject
in interface IJSONWriter
name
- The name (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void endObject() throws java.io.IOException, AutomationException
endObject
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void startArray(java.lang.String name) throws java.io.IOException, AutomationException
startArray
in interface IJSONWriter
name
- The name (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void endArray() throws java.io.IOException, AutomationException
endArray
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeVariant(java.lang.String name, java.lang.Object value) throws java.io.IOException, AutomationException
writeVariant
in interface IJSONWriter
name
- The name (in)value
- A Variant (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeString(java.lang.String name, java.lang.String value) throws java.io.IOException, AutomationException
writeString
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeBoolean(java.lang.String name, boolean value) throws java.io.IOException, AutomationException
writeBoolean
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeByte(java.lang.String name, byte value) throws java.io.IOException, AutomationException
writeByte
in interface IJSONWriter
name
- The name (in)value
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeShort(java.lang.String name, short value) throws java.io.IOException, AutomationException
writeShort
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeInteger(java.lang.String name, int value) throws java.io.IOException, AutomationException
writeInteger
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeFloat(java.lang.String name, float value) throws java.io.IOException, AutomationException
writeFloat
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeDouble(java.lang.String name, double value) throws java.io.IOException, AutomationException
writeDouble
in interface IJSONWriter
name
- The name (in)value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeDate(java.lang.String name, java.util.Date value, boolean asString) throws java.io.IOException, AutomationException
writeDate
in interface IJSONWriter
name
- The name (in)value
- The value (in)asString
- The asString (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeBinary(java.lang.String name, byte[] value) throws java.io.IOException, AutomationException
writeBinary
in interface IJSONWriter
name
- The name (in)value
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeNull(java.lang.String name) throws java.io.IOException, AutomationException
writeNull
in interface IJSONWriter
name
- The name (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeVariantVal(java.lang.Object value) throws java.io.IOException, AutomationException
writeVariantVal
in interface IJSONWriter
value
- A Variant (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeStringVal(java.lang.String value) throws java.io.IOException, AutomationException
writeStringVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeBooleanVal(boolean value) throws java.io.IOException, AutomationException
writeBooleanVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeByteVal(byte value) throws java.io.IOException, AutomationException
writeByteVal
in interface IJSONWriter
value
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeShortVal(short value) throws java.io.IOException, AutomationException
writeShortVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeIntegerVal(int value) throws java.io.IOException, AutomationException
writeIntegerVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeFloatVal(float value) throws java.io.IOException, AutomationException
writeFloatVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeDoubleVal(double value) throws java.io.IOException, AutomationException
writeDoubleVal
in interface IJSONWriter
value
- The value (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeDateVal(java.util.Date value, boolean asString) throws java.io.IOException, AutomationException
writeDateVal
in interface IJSONWriter
value
- The value (in)asString
- The asString (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeBinaryVal(byte[] value) throws java.io.IOException, AutomationException
writeBinaryVal
in interface IJSONWriter
value
- An unsigned byte (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void writeNullVal() throws java.io.IOException, AutomationException
writeNullVal
in interface IJSONWriter
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.