Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: RangeDomain

dojo.require("esri.layers.RangeDomain")

Description

(Added at v2.0)
Information about the range of values belonging to the domain. Range domains specify a valid range of values for a numeric attribute.

Samples

Search for samples that use this class.

Class hierarchy

esri/layers.Domain
|_esri/layers.RangeDomain

Properties

NameTypeSummary
maxValueNumberThe maximum valid value.
minValueNumberThe minimum valid value.
nameStringThe domain name.
typeStringThe domain type.

Methods

NameReturn typeSummary
toJson()ObjectConverts object to its ArcGIS Server JSON representation.
Property Details

<Number> maxValue

The maximum valid value.

<Number> minValue

The minimum valid value.

<String> name

The domain name.

<String> type

The domain type. Valid values are "range" or "codedValue".
Method Details

toJson()

Converts object to its ArcGIS Server JSON representation. (Added at v2.1)
Return type: Object
Show Modal