TYPO3 CMS  TYPO3_6-2
QueryObjectModelConstantsInterface.php
Go to the documentation of this file.
1 <?php
3 
22 
26  const JCR_JOIN_TYPE_INNER = '{http://www.jcp.org/jcr/1.0}joinTypeInner';
27 
31  const JCR_JOIN_TYPE_LEFT_OUTER = '{http://www.jcp.org/jcr/1.0}joinTypeLeftOuter';
32 
36  const JCR_JOIN_TYPE_RIGHT_OUTER = '{http://www.jcp.org/jcr/1.0}joinTypeRightOuter';
37 
41  const JCR_OPERATOR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorEqualTo';
42 
46  const JCR_OPERATOR_NOT_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorNotEqualTo';
47 
51  const JCR_OPERATOR_LESS_THAN = '{http://www.jcp.org/jcr/1.0}operatorLessThan';
52 
56  const JCR_OPERATOR_LESS_THAN_OR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorLessThanOrEqualTo';
57 
61  const JCR_OPERATOR_GREATER_THAN = '{http://www.jcp.org/jcr/1.0}operatorGreaterThan';
62 
66  const JCR_OPERATOR_GREATER_THAN_OR_EQUAL_TO = '{http://www.jcp.org/jcr/1.0}operatorGreaterThanOrEqualTo';
67 
71  const JCR_OPERATOR_LIKE = '{http://www.jcp.org/jcr/1.0}operatorLike';
72 
76  const JCR_ORDER_ASCENDING = '{http://www.jcp.org/jcr/1.0}orderAscending';
77 
81  const JCR_ORDER_DESCENDING = '{http://www.jcp.org/jcr/1.0}orderDescending';
82 }