com.esri.arcgis.system
Interface IIntervalRange

All Superinterfaces:
Serializable
All Known Implementing Classes:
DefinedInterval

public interface IIntervalRange
extends Serializable

Provides access to members that control classifications that need an interval range.

Superseded By

IIntervalRange2

Description

IIntervalRange is for setting the interval for the DefinedInterval classification.

Product Availability

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

See Also:
IDeviationInterval, IClassify, IClassify.classify(int[]), IClassify.setHistogramData(java.lang.Object, java.lang.Object)

Method Summary
 double getDefault()
          The Default Range for the data.
 void setIntervalRange(double rhs1)
          The Interval Range.
 

Method Detail

setIntervalRange

void setIntervalRange(double rhs1)
                      throws IOException,
                             AutomationException
The Interval Range. Call before Classify.

Description

IntervalRange is the range expressed as the data interval. When using with DefinedInterval, set this after you set issue the IClassify.SetHistogramData method and before you use the IClassify.Classify method.

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.
See Also:
IDeviationInterval, IClassify, IClassify.classify(int[]), IClassify.setHistogramData(java.lang.Object, java.lang.Object)

getDefault

double getDefault()
                  throws IOException,
                         AutomationException
The Default Range for the data. Data must be added before calling.

Description

Default is the default interval for a given IClassify object that implements the DefinedInterval CoClass. Use only after using the SetHistogramData method on IClassify.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The range
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
IDeviationInterval, IClassify, IClassify.classify(int[]), IClassify.setHistogramData(java.lang.Object, java.lang.Object)