2009-07-29 16:00:08 +04:00
|
|
|
<?php
|
2009-08-11 01:36:57 +04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
|
|
|
*/
|
2009-07-29 16:00:08 +04:00
|
|
|
|
|
|
|
namespace Doctrine\Common\Collections;
|
|
|
|
|
|
|
|
/**
|
2010-01-22 18:10:13 +03:00
|
|
|
* The missing (SPL) Collection/Array/OrderedMap interface.
|
2009-08-03 17:25:56 +04:00
|
|
|
*
|
2009-07-29 16:00:08 +04:00
|
|
|
* A Collection resembles the nature of a regular PHP array. That is,
|
|
|
|
* it is essentially an ordered map that can syntactically also be used
|
|
|
|
* like a list.
|
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* A Collection has an internal iterator just like a PHP array. In addition
|
|
|
|
* a Collection can be iterated with external iterators, which is preferrable.
|
|
|
|
* To use an external iterator simply use the foreach language construct to
|
2010-01-22 18:10:13 +03:00
|
|
|
* iterate over the collection (which calls getIterator() internally) or
|
2009-08-03 17:25:56 +04:00
|
|
|
* explicitly retrieve an iterator though getIterator() which can then be
|
|
|
|
* used to iterate over the collection.
|
|
|
|
*
|
|
|
|
* You can not rely on the internal iterator of the collection being at a certain
|
|
|
|
* position unless you explicitly positioned it before. Prefer iteration with
|
|
|
|
* external iterators.
|
|
|
|
*
|
2009-08-11 01:36:57 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision: 3938 $
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-07-29 16:00:08 +04:00
|
|
|
*/
|
|
|
|
interface Collection extends \Countable, \IteratorAggregate, \ArrayAccess
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Adds an element to the collection.
|
|
|
|
*
|
|
|
|
* @param mixed $element The element to add.
|
|
|
|
* @return boolean Always TRUE.
|
|
|
|
*/
|
|
|
|
function add($element);
|
|
|
|
|
|
|
|
/**
|
2010-01-22 18:10:13 +03:00
|
|
|
* Clears the collection, removing all elements.
|
2009-07-29 16:00:08 +04:00
|
|
|
*/
|
|
|
|
function clear();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether an element is contained in the collection.
|
|
|
|
* This is an O(n) operation.
|
|
|
|
*
|
|
|
|
* @param mixed $element The element to check for.
|
|
|
|
* @return boolean TRUE if the collection contains the element, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function contains($element);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the collection is empty.
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if the collection is empty, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function isEmpty();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the element with the specified key/index from the collection.
|
|
|
|
*
|
|
|
|
* @param string|integer $key The key/index of the element to remove.
|
|
|
|
* @return mixed The removed element or NULL, if the collection did not contain the element.
|
|
|
|
*/
|
|
|
|
function remove($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes an element from the collection.
|
|
|
|
*
|
|
|
|
* @param mixed $element The element to remove.
|
|
|
|
* @return mixed The removed element or NULL, if the collection did not contain the element.
|
|
|
|
*/
|
|
|
|
function removeElement($element);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the collection contains an element with the specified key/index.
|
|
|
|
*
|
|
|
|
* @param string|integer $key The key/index to check for.
|
|
|
|
* @return boolean TRUE if the collection contains an element with the specified key/index,
|
|
|
|
* FALSE otherwise.
|
|
|
|
*/
|
|
|
|
function containsKey($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an element with a specified key / at a specified index.
|
|
|
|
*
|
|
|
|
* @param string|integer $key The key/index of the element to retrieve.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function get($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all keys/indices of the collection.
|
|
|
|
*
|
|
|
|
* @return array The keys/indices of the collection, in the order of the corresponding
|
|
|
|
* elements in the collection.
|
|
|
|
*/
|
|
|
|
function getKeys();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets all values of the collection.
|
|
|
|
*
|
|
|
|
* @return array The values of all elements in the collection, in the order they
|
|
|
|
* appear in the collection.
|
|
|
|
*/
|
|
|
|
function getValues();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets an element in the collection at the specified key/index.
|
|
|
|
*
|
|
|
|
* @param string|integer $key The key/index of the element to set.
|
|
|
|
* @param mixed $value The element to set.
|
|
|
|
*/
|
|
|
|
function set($key, $value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a plain PHP array representation of the collection.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function toArray();
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Sets the internal iterator to the first element in the collection and
|
|
|
|
* returns this element.
|
|
|
|
*
|
2009-07-29 16:00:08 +04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function first();
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Sets the internal iterator to the last element in the collection and
|
|
|
|
* returns this element.
|
|
|
|
*
|
2009-07-29 16:00:08 +04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2009-08-03 17:25:56 +04:00
|
|
|
function last();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the key/index of the element at the current iterator position.
|
2009-08-11 01:36:57 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
*/
|
|
|
|
function key();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the element of the collection at the current iterator position.
|
2009-08-11 01:36:57 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
*/
|
|
|
|
function current();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moves the internal iterator position to the next element.
|
2009-08-11 01:36:57 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
*/
|
|
|
|
function next();
|
2009-07-29 16:00:08 +04:00
|
|
|
}
|