function UninterpretedOption::setIdentifierValue
The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.
Generated from protobuf field <code>optional string identifier_value = 3;</code>
Parameters
string $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ UninterpretedOption.php, line 131
Class
- UninterpretedOption
- A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects…
Namespace
Google\Protobuf\InternalCode
public function setIdentifierValue($var) {
GPBUtil::checkString($var, True);
$this->identifier_value = $var;
return $this;
}