Packageorg.openzet.utils
Classpublic class ListCollectionUtil

A static class that defines static methods used in relation with ListCollectionView instances.



Public Methods
 MethodDefined by
  
cloneNodes(value:ListCollectionView):Array
[static] Static methods that extracts nodes of a ListCollectionView and returns an Array that holds all these fields.
ListCollectionUtil
  
copy(value:ListCollectionView):ICollectionView
[static] Copies an instance of ListCollectionView and returns a new instance of ICollectionView type.
ListCollectionUtil
Method detail
cloneNodes()method
public static function cloneNodes(value:ListCollectionView):Array

Static methods that extracts nodes of a ListCollectionView and returns an Array that holds all these fields.

Parameters
value:ListCollectionView — ListCollectionView instance to extract field nodes.

Returns
Array — Returns an Array of fields in the given ListCollectionView.
copy()method 
public static function copy(value:ListCollectionView):ICollectionView

Copies an instance of ListCollectionView and returns a new instance of ICollectionView type. This method is useful when we should not refer to an ArrayCollection and yet make a simple copy of that.

Parameters
value:ListCollectionView — Any ListCollectionView instance to make a copy of.

Returns
ICollectionView — A copy of data in a type of ICollectionView.