Packagecom.adobe.mediacore.utils
Classpublic class Range
InheritanceRange Inheritance Object

Describes a range of numbers, between min and max



Public Properties
 PropertyDefined By
  max : Number
[read-only] The maximum number in the range
Range
  min : Number
[read-only] The minimum number in the range
Range
Public Methods
 MethodDefined By
  
Range(min:Number, max:Number)
Constructor.
Range
  
equals(value:Range):Boolean
Returns whether this range is equal to the specified one
Range
Property Detail
maxproperty
max:Number  [read-only]

The maximum number in the range


Implementation
    public function get max():Number
minproperty 
min:Number  [read-only]

The minimum number in the range


Implementation
    public function get min():Number
Constructor Detail
Range()Constructor
public function Range(min:Number, max:Number)

Constructor.

Parameters
min:Number — The minimum number in the range
 
max:Number — The maximum number in the range
Method Detail
equals()method
public function equals(value:Range):Boolean

Returns whether this range is equal to the specified one

Parameters

value:Range

Returns
Boolean