boolMatch = $boolMatch; } /** * @return bool */ public function getBoolMatch() { return $this->boolMatch; } /** * @param DoubleMatcher */ public function setDoubleMatch(DoubleMatcher $doubleMatch) { $this->doubleMatch = $doubleMatch; } /** * @return DoubleMatcher */ public function getDoubleMatch() { return $this->doubleMatch; } /** * @param ListMatcher */ public function setListMatch(ListMatcher $listMatch) { $this->listMatch = $listMatch; } /** * @return ListMatcher */ public function getListMatch() { return $this->listMatch; } /** * @param NullMatch */ public function setNullMatch(NullMatch $nullMatch) { $this->nullMatch = $nullMatch; } /** * @return NullMatch */ public function getNullMatch() { return $this->nullMatch; } /** * @param bool */ public function setPresentMatch($presentMatch) { $this->presentMatch = $presentMatch; } /** * @return bool */ public function getPresentMatch() { return $this->presentMatch; } /** * @param StringMatcher */ public function setStringMatch(StringMatcher $stringMatch) { $this->stringMatch = $stringMatch; } /** * @return StringMatcher */ public function getStringMatch() { return $this->stringMatch; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ValueMatcher::class, 'Google_Service_TrafficDirectorService_ValueMatcher');