com.esri.arcgis.geodatabase
Class NetworkScriptEvaluatorFunctions

java.lang.Object
  extended by com.esri.arcgis.geodatabase.NetworkScriptEvaluatorFunctions
All Implemented Interfaces:
INetworkScriptEvaluatorFunctions, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class NetworkScriptEvaluatorFunctions
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, INetworkScriptEvaluatorFunctions

A container for scriptable members in a network script evaluator.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also:
Serialized Form

Constructor Summary
NetworkScriptEvaluatorFunctions(Object obj)
          Construct a NetworkScriptEvaluatorFunctions using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 Object getParameterValueByName(String parameterName)
          The value of the parameter.
 int hashCode()
          the hashcode for this object
 
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

NetworkScriptEvaluatorFunctions

public NetworkScriptEvaluatorFunctions(Object obj)
                                throws IOException
Construct a NetworkScriptEvaluatorFunctions using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to NetworkScriptEvaluatorFunctions.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
NetworkScriptEvaluatorFunctions o = (NetworkScriptEvaluatorFunctions)obj; // will not work

NetworkScriptEvaluatorFunctions o = new NetworkScriptEvaluatorFunctions(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
IOException - if there are interop problems NetworkScriptEvaluatorFunctions theNetworkScriptEvaluatorFunctions = (NetworkScriptEvaluatorFunctions) obj;
Method Detail

equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getParameterValueByName

public Object getParameterValueByName(String parameterName)
                               throws IOException,
                                      AutomationException
The value of the parameter.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getParameterValueByName in interface INetworkScriptEvaluatorFunctions
Parameters:
parameterName - The parameterName (in)
Returns:
A Variant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.