* */ namespace Combodo\iTop\Application\Search; abstract class CriterionConversionAbstract { public const OP_CONTAINS = 'contains'; public const OP_EQUALS = '='; public const OP_STARTS_WITH = 'starts_with'; public const OP_ENDS_WITH = 'ends_with'; public const OP_EMPTY = 'empty'; public const OP_NOT_EMPTY = 'not_empty'; public const OP_IN = 'IN'; public const OP_BETWEEN_DATES = 'between_dates'; public const OP_BETWEEN = 'between'; public const OP_REGEXP = 'REGEXP'; public const OP_ALL = 'all'; public const OP_MATCHES = 'MATCHES'; }