Packagecom.esri.bacore.domain
Classpublic class BenchmarkItem
InheritanceBenchmarkItem Inheritance flash.events.EventDispatcher

Since : Community Analyst API for Flex 2.2.

The BenchmarkItem class provides an item to be used as a benchmark in comparison reports.

The benchmark item can be specified in one of three ways—as IStudyArea, as IGeographyFeature, or as BenchmarkOptions. All these ways are mutually exclusive. In the last case, two instances of the BenchmarkOptions enueration are allowed—BenchmarkOptions.USE_AVERAGE_VALUES and BenchmarkOptions.USE_MEDIAN_VALUES.

See also

IStudyArea
IGeographyFeature
BenchmarkOptions


Public Properties
 PropertyDefined By
  benchmarkArea : IStudyArea
Benchmark study area.
BenchmarkItem
  benchmarkFeature : IGeographyFeature
Benchmark geography feature.
BenchmarkItem
  benchmarkOptions : BenchmarkOptions
Options specifying an average or median benchmark.
BenchmarkItem
Public Methods
 MethodDefined By
  
BenchmarkItem(item:Object = null)
Creates a new instance of the BenchmarkItem class.
BenchmarkItem
Property Detail
benchmarkAreaproperty
benchmarkArea:IStudyArea

Benchmark study area.


Implementation
    public function get benchmarkArea():IStudyArea
    public function set benchmarkArea(value:IStudyArea):void
benchmarkFeatureproperty 
benchmarkFeature:IGeographyFeature

Benchmark geography feature.


Implementation
    public function get benchmarkFeature():IGeographyFeature
    public function set benchmarkFeature(value:IGeographyFeature):void
benchmarkOptionsproperty 
benchmarkOptions:BenchmarkOptions

Options specifying an average or median benchmark.


Implementation
    public function get benchmarkOptions():BenchmarkOptions
    public function set benchmarkOptions(value:BenchmarkOptions):void
Constructor Detail
BenchmarkItem()Constructor
public function BenchmarkItem(item:Object = null)

Creates a new instance of the BenchmarkItem class.

A benchmark item passed in parameters of this method could be an instance of IStudyArea, IGeographyFeature, or BenchmarkOptions.

Parameters
item:Object (default = null) — Benchmark item.

See also