com.esri.arcgis.server
Class ServerStatisticsResults

java.lang.Object
  extended by com.esri.arcgis.server.ServerStatisticsResults
All Implemented Interfaces:
com.esri.arcgis.interop.RemoteObjRef, IServerTimeRange, IStatisticsResults, java.io.Serializable

public class ServerStatisticsResults
extends java.lang.Object
implements com.esri.arcgis.interop.RemoteObjRef, IStatisticsResults, IServerTimeRange

COM Class 'ServerStatisticsResults'. Generated 3/19/2015 1:20:47 PM from 'C:\ArcGIS\COM\esriServer.olb'

Description 'The ServerStatisticsResults object which returns a set of statistics, such as count, min, max, mean, for a single time period.' 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 =

See Also:
Serialized Form

Field Summary
 
Fields inherited from interface com.esri.arcgis.system.IStatisticsResults
IID, IIDb9c4358a_78b8_11d2_ae60_080009ec732a, xxDummy
 
Fields inherited from interface com.esri.arcgis.server.IServerTimeRange
IID, IID37786a30_fec4_4ea4_953e_dac6b69c716d, xxDummy
 
Constructor Summary
ServerStatisticsResults(java.lang.Object obj)
          Construct a ServerStatisticsResults using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(java.lang.Object o)
          Compare this object with another
 int getCount()
          The count of the values.
 java.util.Date getEndTime()
          The end time for the period that the statistics represent.
 com.esri.arcgis.interop.Dispatch getJintegraDispatch()
          Deprecated. Internal use only.
 double getMaximum()
          The maximum value.
 double getMean()
          The arithmetic mean.
 double getMinimum()
          The minimum value.
 double getStandardDeviation()
          The standard deviation, based on sample flag.
 java.util.Date getStartTime()
          The start time for the period that the statistics represent.
 double getSum()
          The sum of the values.
 int hashCode()
          the hashcode for this object
 void release()
          Release a ServerStatisticsResults.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServerStatisticsResults

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

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

Throws:
java.io.IOException - if there are interop problems ServerStatisticsResults theServerStatisticsResults = (ServerStatisticsResults) obj;
Method Detail

equals

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

Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class java.lang.Object

getJintegraDispatch

public com.esri.arcgis.interop.Dispatch getJintegraDispatch()
Deprecated. Internal use only.

Specified by:
getJintegraDispatch in interface com.esri.arcgis.interop.RemoteObjRef

release

public void release()
Release a ServerStatisticsResults.

Specified by:
release in interface com.esri.arcgis.interop.RemoteObjRef

getCount

public int getCount()
             throws java.io.IOException,
                    AutomationException
The count of the values.

Specified by:
getCount in interface IStatisticsResults
Returns:
The count
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMinimum

public double getMinimum()
                  throws java.io.IOException,
                         AutomationException
The minimum value.

Specified by:
getMinimum in interface IStatisticsResults
Returns:
The min
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMaximum

public double getMaximum()
                  throws java.io.IOException,
                         AutomationException
The maximum value.

Specified by:
getMaximum in interface IStatisticsResults
Returns:
The max
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSum

public double getSum()
              throws java.io.IOException,
                     AutomationException
The sum of the values.

Specified by:
getSum in interface IStatisticsResults
Returns:
The sum
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMean

public double getMean()
               throws java.io.IOException,
                      AutomationException
The arithmetic mean.

Specified by:
getMean in interface IStatisticsResults
Returns:
The mean
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getStandardDeviation

public double getStandardDeviation()
                            throws java.io.IOException,
                                   AutomationException
The standard deviation, based on sample flag.

Specified by:
getStandardDeviation in interface IStatisticsResults
Returns:
The stdDev
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getStartTime

public java.util.Date getStartTime()
                            throws java.io.IOException,
                                   AutomationException
The start time for the period that the statistics represent.

Specified by:
getStartTime in interface IServerTimeRange
Returns:
The pTime
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getEndTime

public java.util.Date getEndTime()
                          throws java.io.IOException,
                                 AutomationException
The end time for the period that the statistics represent.

Specified by:
getEndTime in interface IServerTimeRange
Returns:
The pTime
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.