| Package | system.data |
| Interface | public interface Boundable |
| Implementors | CircularQueue |
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.
| Method | Defined By | ||
|---|---|---|---|
isFull():Boolean
Returns true if the object is full. | Boundable | ||
maxSize():uint
Returns the max number of occurrences in the given collection. | Boundable | ||
| isFull | () | method |
public function isFull():Boolean
Returns true if the object is full.
Boolean — true if the object is full.
|
| maxSize | () | method |
public function maxSize():uintReturns the max number of occurrences in the given collection.
Returnsuint — the max number of occurrences in the given collection.
|