|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.trackinganalyst.PropSet
public class PropSet
Defines set of properties for data.
This property set object provides methods and propertys to manage a collection of named property strings. This object only supports string values.
Constructor Summary | |
---|---|
PropSet()
Constructs a PropSet using ArcGIS Engine. |
|
PropSet(Object obj)
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts. PropSet thePropSet = (PropSet) obj; |
Method Summary | |
---|---|
boolean |
equals(Object o)
Compare this object with another |
void |
getAllProperties(Object[] names,
Object[] values)
The name and value of all the properties in the property set. |
static String |
getClsid()
getClsid. |
int |
getCount()
The number of properties contained in the property set. |
String |
getProperty(String name)
The value of the specified property. |
int |
hashCode()
the hashcode for this object |
void |
removeProperty(String name)
Removes a property from the set. |
void |
setProperties(Object names,
Object values)
Set the property collection from an array of names and values. |
void |
setProperty(String name,
String value)
The value of the specified property. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
---|
getJintegraDispatch, release |
Constructor Detail |
---|
public PropSet() throws IOException, UnknownHostException
IOException
- if there are interop problems
UnknownHostException
- if there are interop problemspublic PropSet(Object obj) throws IOException
PropSet thePropSet = (PropSet) obj;
obj
to PropSet
.
obj
- an object returned from ArcGIS Engine or Server
IOException
- if there are interop problemsMethod Detail |
---|
public static String getClsid()
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public int getCount() throws IOException, AutomationException
getCount
in interface IPropSet
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getProperty(String name) throws IOException, AutomationException
getProperty
in interface IPropSet
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void getAllProperties(Object[] names, Object[] values) throws IOException, AutomationException
getAllProperties
in interface IPropSet
names
- A Variant (in/out: use single element array)values
- A Variant (in/out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setProperties(Object names, Object values) throws IOException, AutomationException
setProperties
in interface IPropSet
names
- A Variant (in)values
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setProperty(String name, String value) throws IOException, AutomationException
Sets the string value of the named property.
setProperty
in interface IPropSet
name
- The name (in)value
- The value (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void removeProperty(String name) throws IOException, AutomationException
removeProperty
in interface IPropSet
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |