com.esri.arcgis.server
Interface esriServerStatFunction

All Superinterfaces:
Serializable

public interface esriServerStatFunction
extends Serializable

GIS server statistics function.

Remarks

esriServerStatFunction specifies a particular statistical function (e.g. count, min, max, etc) that you want to query the GIS server's statisitcs about. Use esriServerStatFunction to specify the statistical function when using the GetSpecificStatisticForTimeIntervals method on IServerStatistics.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriSSFCount
          Number of occurrences of the measured event.
static int esriSSFMaximum
          Maximum value of the measured event.
static int esriSSFMean
          Mean of the measured event.
static int esriSSFMinimum
          Minimum value of the measured event.
static int esriSSFStandardDeviation
          Standard deviation of the measured event.
static int esriSSFSum
          Total of the measured event.
static int esriSSFSumSquares
          Sum squares of the measured event.
 

Field Detail

esriSSFCount

static final int esriSSFCount
Number of occurrences of the measured event.

See Also:
Constant Field Values

esriSSFMinimum

static final int esriSSFMinimum
Minimum value of the measured event.

See Also:
Constant Field Values

esriSSFMaximum

static final int esriSSFMaximum
Maximum value of the measured event.

See Also:
Constant Field Values

esriSSFSum

static final int esriSSFSum
Total of the measured event.

See Also:
Constant Field Values

esriSSFSumSquares

static final int esriSSFSumSquares
Sum squares of the measured event.

See Also:
Constant Field Values

esriSSFMean

static final int esriSSFMean
Mean of the measured event.

See Also:
Constant Field Values

esriSSFStandardDeviation

static final int esriSSFStandardDeviation
Standard deviation of the measured event.

See Also:
Constant Field Values