Packagecom.ericfeminella.utils.iterators
Classpublic class IteratorFactoryTypeError
InheritanceIteratorFactoryTypeError Inheritance Error

IteratorFactory API illegal Iterator type Error class

Throws an error specifying that an iterator type does not exist. As a best practice only constants from IteratorTypes should be use in conjunction with IteratorFactory to specify which iterator to use.

  
  To avoid this error as a best practice only use an IteratorTypes constant:
  
  IteratorTypes.OBJECT_ITERATOR;
  IteratorTypes.ARRAY_ITERATOR;
  IteratorTypes.ARRAY_COLLECTION_ITERATOR; 
  
  



Public Methods
 MethodDefined by
  
IteratorFactoryTypeError(classType:String = "")
Throws an error specifying that an iterator type does not exist
IteratorFactoryTypeError
Public Constants
 ConstantDefined by
  ITERATOR_TYPE_ERROR : String = "IteratorFactoryTypeError: Invalid Type specified. Only registed IteratorTypes are allowed."
[static]
IteratorFactoryTypeError
Constructor detail
IteratorFactoryTypeError()constructor
public function IteratorFactoryTypeError(classType:String = "")

Throws an error specifying that an iterator type does not exist

Parameters
classType:String (default = "")

See also

Constant detail
ITERATOR_TYPE_ERRORconstant
public static const ITERATOR_TYPE_ERROR:String = "IteratorFactoryTypeError: Invalid Type specified. Only registed IteratorTypes are allowed."