Packagesystem.data
Interfacepublic interface Boundable
Implementors CircularQueue

Defines an object that is bounded in size.

The size of the object can vary, but it can never exceed a preset maximum number of elements.

This interface allows the querying of details associated with the maximum number of elements.



Public Methods
 MethodDefined By
  
isFull():Boolean
Returns true if the object is full.
Boundable
  
maxSize():uint
Returns the max number of occurrences in the given collection.
Boundable
Method Detail
isFull()method
public function isFull():Boolean

Returns true if the object is full.

Returns
Booleantrue if the object is full.
maxSize()method 
public function maxSize():uint

Returns the max number of occurrences in the given collection.

Returns
uint — the max number of occurrences in the given collection.