public function exclude(DataQuery $query)
 {
     if (!is_array($this->getValue())) {
         $values = explode(',', $this->getValue());
     } else {
         $values = $this->getValue();
     }
     $filter = new ExactMatchFilter($this->getFullName(), $values, $this->getModifiers());
     return $filter->exclude($query);
 }
 public function exclude(DataQuery $query)
 {
     $filter = new ExactMatchFilter($this->getFullName(), $this->getValue(), $this->getModifiers());
     return $filter->exclude($query);
 }