rv.data.DisplayMode
*/
class DisplayMode extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string name = 1;
*/
protected $name = '';
/**
* Generated from protobuf field uint32 width = 2;
*/
protected $width = 0;
/**
* Generated from protobuf field uint32 height = 3;
*/
protected $height = 0;
/**
* Generated from protobuf field double refresh_rate = 4;
*/
protected $refresh_rate = 0.0;
/**
* Generated from protobuf field bool interlaced = 5;
*/
protected $interlaced = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* @type int $width
* @type int $height
* @type float $refresh_rate
* @type bool $interlaced
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Screens::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string name = 1;
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Generated from protobuf field string name = 1;
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Generated from protobuf field uint32 width = 2;
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* Generated from protobuf field uint32 width = 2;
* @param int $var
* @return $this
*/
public function setWidth($var)
{
GPBUtil::checkUint32($var);
$this->width = $var;
return $this;
}
/**
* Generated from protobuf field uint32 height = 3;
* @return int
*/
public function getHeight()
{
return $this->height;
}
/**
* Generated from protobuf field uint32 height = 3;
* @param int $var
* @return $this
*/
public function setHeight($var)
{
GPBUtil::checkUint32($var);
$this->height = $var;
return $this;
}
/**
* Generated from protobuf field double refresh_rate = 4;
* @return float
*/
public function getRefreshRate()
{
return $this->refresh_rate;
}
/**
* Generated from protobuf field double refresh_rate = 4;
* @param float $var
* @return $this
*/
public function setRefreshRate($var)
{
GPBUtil::checkDouble($var);
$this->refresh_rate = $var;
return $this;
}
/**
* Generated from protobuf field bool interlaced = 5;
* @return bool
*/
public function getInterlaced()
{
return $this->interlaced;
}
/**
* Generated from protobuf field bool interlaced = 5;
* @param bool $var
* @return $this
*/
public function setInterlaced($var)
{
GPBUtil::checkBool($var);
$this->interlaced = $var;
return $this;
}
}