Description: 'Provides access to Sequential JSON Reader.' 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 IJSONReaderProxy extends com.esri.arcgis.interop.Dispatch implements IJSONReader, 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, objRefIID, IID48105a80_e0dc_4d69_bb61_3df74cafa52c| Modifier | Constructor and Description |
|---|---|
|
IJSONReaderProxy()
Deprecated.
For internal use only
|
|
IJSONReaderProxy(java.lang.Object obj)
Deprecated.
|
protected |
IJSONReaderProxy(java.lang.Object obj,
java.lang.String iid)
Deprecated.
|
|
IJSONReaderProxy(java.lang.String CLSID,
java.lang.String host,
com.esri.arcgis.interop.AuthInfo authInfo)
Deprecated.
|
protected |
IJSONReaderProxy(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.
|
int |
findProperties(IStringArray propnames)
Deprecated.
Reads current object until one of property names matches.
|
boolean |
findProperty(java.lang.String propname)
Deprecated.
Reads current object until property name matches or object ends.
|
int |
getCurrentTokenType()
Deprecated.
Obtains type of current token.
|
IStream |
getStream()
Deprecated.
Obtains underlying stream.
|
boolean |
isBoolean()
Deprecated.
Indicates true if current token is a property value or array value of boolean type.
|
boolean |
isEndOfArray()
Deprecated.
Indicates true if current token is ']'.
|
boolean |
isEndOfObject()
Deprecated.
Indicates true if current token is '}'.
|
boolean |
isNull()
Deprecated.
Indicates true if current token is a property value or array value and equals to null.
|
boolean |
isNumber()
Deprecated.
Indicates true if current token is a property value or array value of numeric type.
|
boolean |
isStartOfArray()
Deprecated.
Indicates true if current token is '['.
|
boolean |
isStartOfObject()
Deprecated.
Indicates true if current token is '{'.
|
boolean |
isString()
Deprecated.
Indicates true if current token is a property value or array value of type string.
|
void |
read()
Deprecated.
Reads next JSON token.
|
void |
readFrom(IStream inputStream)
Deprecated.
Specifies input stream.
|
void |
readFromString(java.lang.String text)
Deprecated.
Specifies input as string.
|
java.lang.String |
readPropertyName()
Deprecated.
Obtains property name.
|
java.lang.Object |
readValue()
Deprecated.
Obtains array or property value as Variant.
|
boolean |
readValueAsBoolean()
Deprecated.
Obtains array or property value as boolean.
|
java.util.Date |
readValueAsDate()
Deprecated.
Obtains property or array value as date.
|
double |
readValueAsDouble()
Deprecated.
Obtains property or array value as number.
|
int |
readValueAsLong()
Deprecated.
Obtains property or array value as number.
|
java.lang.String |
readValueAsString()
Deprecated.
Obtains property or array value as string.
|
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 |
skipUntilArrayEnds()
Deprecated.
Skips the rest of the current object, including closing bracket.
|
void |
skipUntilObjectEnds()
Deprecated.
Skips the rest of the current object, including closing bracket.
|
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, writeExternalpublic static final java.lang.Class targetClass
public boolean noncastable
public IJSONReaderProxy(java.lang.String CLSID,
java.lang.String host,
com.esri.arcgis.interop.AuthInfo authInfo)
throws java.net.UnknownHostException,
java.io.IOException
java.net.UnknownHostExceptionjava.io.IOExceptionpublic IJSONReaderProxy()
public IJSONReaderProxy(java.lang.Object obj)
throws java.io.IOException
java.io.IOExceptionprotected IJSONReaderProxy(java.lang.Object obj,
java.lang.String iid)
throws java.io.IOException
java.io.IOExceptionprotected IJSONReaderProxy(java.lang.String CLSID,
java.lang.String iid,
java.lang.String host,
com.esri.arcgis.interop.AuthInfo authInfo)
throws java.io.IOException
java.io.IOExceptionpublic void addListener(java.lang.String iidStr,
java.lang.Object theListener,
java.lang.Object theSource)
throws java.io.IOException
com.esri.arcgis.interop.DispatchaddListener in class com.esri.arcgis.interop.DispatchiidStr - 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.IOExceptionpublic void removeListener(java.lang.String iidStr,
java.lang.Object theListener)
throws java.io.IOException
com.esri.arcgis.interop.DispatchremoveListener in class com.esri.arcgis.interop.DispatchiidStr - the ID of the outgoing interface, implemented by the listenertheListener - the object that no longer wishes to be informed of the eventsjava.io.IOExceptionpublic void readFrom(IStream inputStream) throws java.io.IOException, AutomationException
readFrom in interface IJSONReaderinputStream - 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 readFromString(java.lang.String text)
throws java.io.IOException,
AutomationException
readFromString in interface IJSONReadertext - The text (in)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 IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void read()
throws java.io.IOException,
AutomationException
read in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public int getCurrentTokenType()
throws java.io.IOException,
AutomationException
getCurrentTokenType in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isStartOfObject()
throws java.io.IOException,
AutomationException
isStartOfObject in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isEndOfObject()
throws java.io.IOException,
AutomationException
isEndOfObject in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isStartOfArray()
throws java.io.IOException,
AutomationException
isStartOfArray in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isEndOfArray()
throws java.io.IOException,
AutomationException
isEndOfArray in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isString()
throws java.io.IOException,
AutomationException
isString in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isNumber()
throws java.io.IOException,
AutomationException
isNumber in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isBoolean()
throws java.io.IOException,
AutomationException
isBoolean in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean isNull()
throws java.io.IOException,
AutomationException
isNull in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public java.lang.Object readValue()
throws java.io.IOException,
AutomationException
readValue in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public java.lang.String readPropertyName()
throws java.io.IOException,
AutomationException
readPropertyName in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public java.lang.String readValueAsString()
throws java.io.IOException,
AutomationException
readValueAsString in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public int readValueAsLong()
throws java.io.IOException,
AutomationException
readValueAsLong in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public double readValueAsDouble()
throws java.io.IOException,
AutomationException
readValueAsDouble in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean readValueAsBoolean()
throws java.io.IOException,
AutomationException
readValueAsBoolean in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public java.util.Date readValueAsDate()
throws java.io.IOException,
AutomationException
readValueAsDate in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public boolean findProperty(java.lang.String propname)
throws java.io.IOException,
AutomationException
findProperty in interface IJSONReaderpropname - The propname (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public int findProperties(IStringArray propnames) throws java.io.IOException, AutomationException
findProperties in interface IJSONReaderpropnames - A reference to a com.esri.arcgis.system.IStringArray (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void skipUntilObjectEnds()
throws java.io.IOException,
AutomationException
skipUntilObjectEnds in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void skipUntilArrayEnds()
throws java.io.IOException,
AutomationException
skipUntilArrayEnds in interface IJSONReaderjava.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.