Packagecom.vmware.data.query
Classpublic class ResultSpec
InheritanceResultSpec Inheritance Object
Implements flash.events.IEventDispatcher

Describes additional transformations/filters to be applied on the result set.

Note: this class was generated from its Java counterpart ResultSpec



Public Properties
 PropertyDefined By
  facets : Array
Specification of which facets to compute on the result (internal use only).
ResultSpec
  maxResultCount : Number
The maximum number of results to retrieve.
ResultSpec
  offset : Number
The offset into the result set.
ResultSpec
  order : OrderingCriteria
The criteria specifying how the results should be ordered.
ResultSpec
Public Methods
 MethodDefined By
  
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, weakRef:Boolean = false):void
ResultSpec
  
dispatchEvent(event:Event):Boolean
ResultSpec
  
hasEventListener(type:String):Boolean
ResultSpec
  
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
ResultSpec
  
willTrigger(type:String):Boolean
ResultSpec
Property Detail
facetsproperty
facets:Array

Specification of which facets to compute on the result (internal use only).

This property can be used as the source for data binding.


Implementation
    public function get facets():Array
    public function set facets(value:Array):void
maxResultCountproperty 
maxResultCount:Number

The maximum number of results to retrieve. By default all results are retrieved.

This property can be used as the source for data binding.


Implementation
    public function get maxResultCount():Number
    public function set maxResultCount(value:Number):void
offsetproperty 
offset:Number

The offset into the result set. If the offset is N then items from N to N + maxResultCount - 1 will be returned. If maxResultCount is not specified then all results greater or equal to the offset will be returned. If no offset is specified value will default to 0.

This property can be used as the source for data binding.


Implementation
    public function get offset():Number
    public function set offset(value:Number):void
orderproperty 
order:OrderingCriteria

The criteria specifying how the results should be ordered.

This property can be used as the source for data binding.


Implementation
    public function get order():OrderingCriteria
    public function set order(value:OrderingCriteria):void
Method Detail
addEventListener()method
public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, weakRef:Boolean = false):void

Parameters

type:String
 
listener:Function
 
useCapture:Boolean (default = false)
 
priority:int (default = 0)
 
weakRef:Boolean (default = false)

dispatchEvent()method 
public function dispatchEvent(event:Event):Boolean

Parameters

event:Event

Returns
Boolean
hasEventListener()method 
public function hasEventListener(type:String):Boolean

Parameters

type:String

Returns
Boolean
removeEventListener()method 
public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void

Parameters

type:String
 
listener:Function
 
useCapture:Boolean (default = false)

willTrigger()method 
public function willTrigger(type:String):Boolean

Parameters

type:String

Returns
Boolean