google.protobuf.Field */ class Field extends \Google\Protobuf\Internal\Message { /** * The field type. * * Generated from protobuf field .google.protobuf.Field.Kind kind = 1; */ private $kind = 0; /** * The field cardinality. * * Generated from protobuf field .google.protobuf.Field.Cardinality cardinality = 2; */ private $cardinality = 0; /** * The field number. * * Generated from protobuf field int32 number = 3; */ private $number = 0; /** * The field name. * * Generated from protobuf field string name = 4; */ private $name = ''; /** * The field type URL, without the scheme, for message or enumeration * types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. * * Generated from protobuf field string type_url = 6; */ private $type_url = ''; /** * The index of the field type in `Type.oneofs`, for message or enumeration * types. The first type has index 1; zero means the type is not in the list. * * Generated from protobuf field int32 oneof_index = 7; */ private $oneof_index = 0; /** * Whether to use alternative packed wire representation. * * Generated from protobuf field bool packed = 8; */ private $packed = false; /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 9; */ private $options; /** * The field JSON name. * * Generated from protobuf field string json_name = 10; */ private $json_name = ''; /** * The string value of the default value of this field. Proto2 syntax only. * * Generated from protobuf field string default_value = 11; */ private $default_value = ''; public function __construct() { \GPBMetadata\Google\Protobuf\Type::initOnce(); parent::__construct(); } /** * The field type. * * Generated from protobuf field .google.protobuf.Field.Kind kind = 1; * @return int */ public function getKind() { return $this->kind; } /** * The field type. * * Generated from protobuf field .google.protobuf.Field.Kind kind = 1; * @param int $var * @return $this */ public function setKind($var) { GPBUtil::checkEnum($var, \Google\Protobuf\Field_Kind::class); $this->kind = $var; return $this; } /** * The field cardinality. * * Generated from protobuf field .google.protobuf.Field.Cardinality cardinality = 2; * @return int */ public function getCardinality() { return $this->cardinality; } /** * The field cardinality. * * Generated from protobuf field .google.protobuf.Field.Cardinality cardinality = 2; * @param int $var * @return $this */ public function setCardinality($var) { GPBUtil::checkEnum($var, \Google\Protobuf\Field_Cardinality::class); $this->cardinality = $var; return $this; } /** * The field number. * * Generated from protobuf field int32 number = 3; * @return int */ public function getNumber() { return $this->number; } /** * The field number. * * Generated from protobuf field int32 number = 3; * @param int $var * @return $this */ public function setNumber($var) { GPBUtil::checkInt32($var); $this->number = $var; return $this; } /** * The field name. * * Generated from protobuf field string name = 4; * @return string */ public function getName() { return $this->name; } /** * The field name. * * Generated from protobuf field string name = 4; * @param string $var * @return $this */ public function setName($var) { GPBUtil::checkString($var, True); $this->name = $var; return $this; } /** * The field type URL, without the scheme, for message or enumeration * types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. * * Generated from protobuf field string type_url = 6; * @return string */ public function getTypeUrl() { return $this->type_url; } /** * The field type URL, without the scheme, for message or enumeration * types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. * * Generated from protobuf field string type_url = 6; * @param string $var * @return $this */ public function setTypeUrl($var) { GPBUtil::checkString($var, True); $this->type_url = $var; return $this; } /** * The index of the field type in `Type.oneofs`, for message or enumeration * types. The first type has index 1; zero means the type is not in the list. * * Generated from protobuf field int32 oneof_index = 7; * @return int */ public function getOneofIndex() { return $this->oneof_index; } /** * The index of the field type in `Type.oneofs`, for message or enumeration * types. The first type has index 1; zero means the type is not in the list. * * Generated from protobuf field int32 oneof_index = 7; * @param int $var * @return $this */ public function setOneofIndex($var) { GPBUtil::checkInt32($var); $this->oneof_index = $var; return $this; } /** * Whether to use alternative packed wire representation. * * Generated from protobuf field bool packed = 8; * @return bool */ public function getPacked() { return $this->packed; } /** * Whether to use alternative packed wire representation. * * Generated from protobuf field bool packed = 8; * @param bool $var * @return $this */ public function setPacked($var) { GPBUtil::checkBool($var); $this->packed = $var; return $this; } /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 9; * @return \Google\Protobuf\Internal\RepeatedField */ public function getOptions() { return $this->options; } /** * The protocol buffer options. * * Generated from protobuf field repeated .google.protobuf.Option options = 9; * @param \Google\Protobuf\Option[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setOptions($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Option::class); $this->options = $arr; return $this; } /** * The field JSON name. * * Generated from protobuf field string json_name = 10; * @return string */ public function getJsonName() { return $this->json_name; } /** * The field JSON name. * * Generated from protobuf field string json_name = 10; * @param string $var * @return $this */ public function setJsonName($var) { GPBUtil::checkString($var, True); $this->json_name = $var; return $this; } /** * The string value of the default value of this field. Proto2 syntax only. * * Generated from protobuf field string default_value = 11; * @return string */ public function getDefaultValue() { return $this->default_value; } /** * The string value of the default value of this field. Proto2 syntax only. * * Generated from protobuf field string default_value = 11; * @param string $var * @return $this */ public function setDefaultValue($var) { GPBUtil::checkString($var, True); $this->default_value = $var; return $this; } }