%PDF- %PDF-_get(self::KEY_FIELD); } /** * Set field * * @param string $field * @return $this */ public function setField($field) { return $this->setData(self::KEY_FIELD, $field); } /** * Get value * * @return string */ public function getValue() { return $this->_get(self::KEY_VALUE); } /** * Set value * * @param string $value * @return $this */ public function setValue($value) { return $this->setData(self::KEY_VALUE, $value); } /** * Get condition type * * @return string|null */ public function getConditionType() { return $this->_get(self::KEY_CONDITION_TYPE) ?: 'eq'; } /** * Set condition type * * @param string $conditionType * @return $this */ public function setConditionType($conditionType) { return $this->setData(self::KEY_CONDITION_TYPE, $conditionType); } }