You are here

interface PHPExcel_CachedObjectStorage_ICache in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php \PHPExcel_CachedObjectStorage_ICache

PHPExcel_CachedObjectStorage_ICache

@category PHPExcel @package PHPExcel_CachedObjectStorage @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)

Hierarchy

Expanded class hierarchy of PHPExcel_CachedObjectStorage_ICache

All classes that implement PHPExcel_CachedObjectStorage_ICache

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php, line 36

View source
interface PHPExcel_CachedObjectStorage_ICache {

  /**
   * Add or Update a cell in cache identified by coordinate address
   *
   * @param	string			$pCoord		Coordinate address of the cell to update
   * @param	PHPExcel_Cell	$cell		Cell to update
   * @return	PHPExcel_Cell
   * @throws	PHPExcel_Exception
   */
  public function addCacheData($pCoord, PHPExcel_Cell $cell);

  /**
   * Add or Update a cell in cache
   *
   * @param	PHPExcel_Cell	$cell		Cell to update
   * @return	PHPExcel_Cell
   * @throws	PHPExcel_Exception
   */
  public function updateCacheData(PHPExcel_Cell $cell);

  /**
   * Fetch a cell from cache identified by coordinate address
   *
   * @param	string			$pCoord		Coordinate address of the cell to retrieve
   * @return PHPExcel_Cell 	Cell that was found, or null if not found
   * @throws	PHPExcel_Exception
   */
  public function getCacheData($pCoord);

  /**
   * Delete a cell in cache identified by coordinate address
   *
   * @param	string			$pCoord		Coordinate address of the cell to delete
   * @throws	PHPExcel_Exception
   */
  public function deleteCacheData($pCoord);

  /**
   * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell?
   *
   * @param	string		$pCoord		Coordinate address of the cell to check
   * @return	boolean
   */
  public function isDataSet($pCoord);

  /**
   * Get a list of all cell addresses currently held in cache
   *
   * @return	string[]
   */
  public function getCellList();

  /**
   * Get the list of all cell addresses currently held in cache sorted by column and row
   *
   * @return	string[]
   */
  public function getSortedCellList();

  /**
   * Clone the cell collection
   *
   * @param	PHPExcel_Worksheet	$parent		The new worksheet
   * @return	void
   */
  public function copyCellCollection(PHPExcel_Worksheet $parent);

  /**
   * Identify whether the caching method is currently available
   * Some methods are dependent on the availability of certain extensions being enabled in the PHP build
   *
   * @return	boolean
   */
  public static function cacheMethodIsAvailable();

}

Members

Namesort descending Modifiers Type Description Overrides
PHPExcel_CachedObjectStorage_ICache::addCacheData public function Add or Update a cell in cache identified by coordinate address 11
PHPExcel_CachedObjectStorage_ICache::cacheMethodIsAvailable public static function * Identify whether the caching method is currently available * Some methods are dependent on the availability of certain extensions being enabled in the PHP build * *
PHPExcel_CachedObjectStorage_ICache::copyCellCollection public function * Clone the cell collection * *
PHPExcel_CachedObjectStorage_ICache::deleteCacheData public function Delete a cell in cache identified by coordinate address
PHPExcel_CachedObjectStorage_ICache::getCacheData public function Fetch a cell from cache identified by coordinate address 11
PHPExcel_CachedObjectStorage_ICache::getCellList public function * Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_ICache::getSortedCellList public function * Get the list of all cell addresses currently held in cache sorted by column and row * *
PHPExcel_CachedObjectStorage_ICache::isDataSet public function * Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? * *
PHPExcel_CachedObjectStorage_ICache::updateCacheData public function Add or Update a cell in cache