|
TYPO3 API
SVNRelease
|
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 2009 Jochen Rau <jochen.rau@typoplanet.de> 00006 * All rights reserved 00007 * 00008 * This class is a backport of the corresponding class of FLOW3. 00009 * All credits go to the v5 team. 00010 * 00011 * This script is part of the TYPO3 project. The TYPO3 project is 00012 * free software; you can redistribute it and/or modify 00013 * it under the terms of the GNU General Public License as published by 00014 * the Free Software Foundation; either version 2 of the License, or 00015 * (at your option) any later version. 00016 * 00017 * The GNU General Public License can be found at 00018 * http://www.gnu.org/copyleft/gpl.html. 00019 * 00020 * This script is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * This copyright notice MUST APPEAR in all copies of the script! 00026 ***************************************************************/ 00027 00028 /** 00029 * Defines constants used in the query object model. 00030 * 00031 * @package Extbase 00032 * @subpackage Persistence\QOM 00033 * @version $Id: QueryObjectModelConstantsInterface.php 2148 2010-03-30 09:28:45Z jocrau $ 00034 * @deprecated since Extbase 1.1; use Tx_Extbase_Persistence_QueryInterface::* instead 00035 */ 00036 interface Tx_Extbase_Persistence_QOM_QueryObjectModelConstantsInterface { 00037 00038 /** 00039 * An inner join. 00040 */ 00041 const JCR_JOIN_TYPE_INNER = '{http://www.jcp.org/jcr/1.0}joinTypeInner'; 00042 00043 /** 00044 * A left-outer join. 00045 */ 00046 const JCR_JOIN_TYPE_LEFT_OUTER = '{http://www.jcp.org/jcr/1.0}joinTypeLeftOuter'; 00047 00048 /** 00049 * A right-outer join. 00050 */ 00051 const JCR_JOIN_TYPE_RIGHT_OUTER = '{http://www.jcp.org/jcr/1.0}joinTypeRightOuter'; 00052 00053 /** 00054 * The '=' comparison operator. 00055 */ 00056 const JCR_OPERATOR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorEqualTo'; 00057 00058 /** 00059 * The '!=' comparison operator. 00060 */ 00061 const JCR_OPERATOR_NOT_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorNotEqualTo'; 00062 00063 /** 00064 * The '<' comparison operator. 00065 */ 00066 const JCR_OPERATOR_LESS_THAN = '{http://www.jcp.org/jcr/1.0}operatorLessThan'; 00067 00068 /** 00069 * The '<=' comparison operator. 00070 */ 00071 const JCR_OPERATOR_LESS_THAN_OR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorLessThanOrEqualTo'; 00072 00073 /** 00074 * The '>' comparison operator. 00075 */ 00076 const JCR_OPERATOR_GREATER_THAN = '{http://www.jcp.org/jcr/1.0}operatorGreaterThan'; 00077 00078 /** 00079 * The '>=' comparison operator. 00080 */ 00081 const JCR_OPERATOR_GREATER_THAN_OR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorGreaterThanOrEqualTo'; 00082 00083 /** 00084 * The 'like' comparison operator. 00085 */ 00086 const JCR_OPERATOR_LIKE = '{http://www.jcp.org/jcr/1.0}operatorLike'; 00087 00088 /** 00089 * Ascending order. 00090 */ 00091 const JCR_ORDER_ASCENDING = '{http://www.jcp.org/jcr/1.0}orderAscending'; 00092 00093 /** 00094 * Descending order. 00095 */ 00096 const JCR_ORDER_DESCENDING = '{http://www.jcp.org/jcr/1.0}orderDescending'; 00097 00098 } 00099 00100 ?>
1.8.0