isValueFromEnum() public method

Tells wheter given value is from enumeration
public isValueFromEnum ( mixed $value ) : boolean
$value mixed
return boolean
Example #1
0
 /**
  * Tells wheter given value is from enumeration
  *
  * @param mixed $value
  * @return bool
  * @throws InvalidMethodCallException
  */
 public function isValueFromEnum($value)
 {
     $this->checkContainsEnumeration();
     return $this->propertyValuesEnum->isValueFromEnum($value);
 }