com.esri.arcgis.system
Interface IDeviationInterval

All Superinterfaces:
Serializable
All Known Implementing Classes:
StandardDeviation

public interface IDeviationInterval
extends Serializable

Provides access to members that control the classification methods that require a standard deviation based range.

Description

IDeviationInterval is implemented by StandardDeviation, and is used to set the standard deviation interval. Set values on this interface after calling the SetHistogram method on the IClassify interface. Then, you can call IClassify.Classify.

Product Availability

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

See Also:
StandardDeviation

Method Summary
 double getDeviationInterval()
          The deviation interval (1/4 <= value <= 1).
 void setDeviationInterval(double value)
          The deviation interval (1/4 <= value <= 1).
 void setMean(double rhs1)
          The mean value.
 void setStandardDev(double rhs1)
          The standard deviation.
 

Method Detail

setDeviationInterval

void setDeviationInterval(double value)
                          throws IOException,
                                 AutomationException
The deviation interval (1/4 <= value <= 1).

Description

DeviationInterval is the interval for the standard deviation classification. The interval is expressed as a percentage of 1 standard deviation. The value range that may be entered is 0.25 to 1.0.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
value - The value (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDeviationInterval

double getDeviationInterval()
                            throws IOException,
                                   AutomationException
The deviation interval (1/4 <= value <= 1).

Description

DeviationInterval is the interval for the standard deviation classification. The interval is expressed as a percentage of 1 standard deviation. The value range that may be entered is 0.25 to 1.0.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The value
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setMean

void setMean(double rhs1)
             throws IOException,
                    AutomationException
The mean value.

Description

Mean sets the mean value for the Standard Deviation classification.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
rhs1 - The rhs1 (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setStandardDev

void setStandardDev(double rhs1)
                    throws IOException,
                           AutomationException
The standard deviation.

Description

StandardDev sets the Standard Deviation value for the Standard Deviation classification

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
rhs1 - The rhs1 (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.