google.protobuf.EnumValueDescriptorProto
*/
class EnumValueDescriptorProto extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field optional string name = 1;
*/
private $name = '';
private $has_name = false;
/**
* Generated from protobuf field optional int32 number = 2;
*/
private $number = 0;
private $has_number = false;
/**
* Generated from protobuf field optional .google.protobuf.EnumValueOptions options = 3;
*/
private $options = null;
private $has_options = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* @type int $number
* @type \Google\Protobuf\Internal\EnumValueOptions $options
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Internal\Descriptor::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field optional string name = 1;
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field optional string name = 1;
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
$this->has_name = true;
return $this;
}
public function hasName()
{
return $this->has_name;
}
/**
* Generated from protobuf field optional int32 number = 2;
* @return int
*/
public function getNumber()
{
return $this->number;
}
/**
* Generated from protobuf field optional int32 number = 2;
* @param int $var
* @return $this
*/
public function setNumber($var)
{
GPBUtil::checkInt32($var);
$this->number = $var;
$this->has_number = true;
return $this;
}
public function hasNumber()
{
return $this->has_number;
}
/**
* Generated from protobuf field optional .google.protobuf.EnumValueOptions options = 3;
* @return \Google\Protobuf\Internal\EnumValueOptions
*/
public function getOptions()
{
return $this->options;
}
/**
* Generated from protobuf field optional .google.protobuf.EnumValueOptions options = 3;
* @param \Google\Protobuf\Internal\EnumValueOptions $var
* @return $this
*/
public function setOptions($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Internal\EnumValueOptions::class);
$this->options = $var;
$this->has_options = true;
return $this;
}
public function hasOptions()
{
return $this->has_options;
}
}