| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: google/protobuf/type.proto
- namespace Google\Protobuf;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * A single field of a message type.
- *
- * Generated from protobuf message <code>google.protobuf.Field</code>
- */
- class Field extends \Google\Protobuf\Internal\Message
- {
- /**
- * The field type.
- *
- * Generated from protobuf field <code>.google.protobuf.Field.Kind kind = 1;</code>
- */
- private $kind = 0;
- /**
- * The field cardinality.
- *
- * Generated from protobuf field <code>.google.protobuf.Field.Cardinality cardinality = 2;</code>
- */
- private $cardinality = 0;
- /**
- * The field number.
- *
- * Generated from protobuf field <code>int32 number = 3;</code>
- */
- private $number = 0;
- /**
- * The field name.
- *
- * Generated from protobuf field <code>string name = 4;</code>
- */
- 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 <code>string type_url = 6;</code>
- */
- 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 <code>int32 oneof_index = 7;</code>
- */
- private $oneof_index = 0;
- /**
- * Whether to use alternative packed wire representation.
- *
- * Generated from protobuf field <code>bool packed = 8;</code>
- */
- private $packed = false;
- /**
- * The protocol buffer options.
- *
- * Generated from protobuf field <code>repeated .google.protobuf.Option options = 9;</code>
- */
- private $options;
- /**
- * The field JSON name.
- *
- * Generated from protobuf field <code>string json_name = 10;</code>
- */
- private $json_name = '';
- /**
- * The string value of the default value of this field. Proto2 syntax only.
- *
- * Generated from protobuf field <code>string default_value = 11;</code>
- */
- private $default_value = '';
- public function __construct() {
- \GPBMetadata\Google\Protobuf\Type::initOnce();
- parent::__construct();
- }
- /**
- * The field type.
- *
- * Generated from protobuf field <code>.google.protobuf.Field.Kind kind = 1;</code>
- * @return int
- */
- public function getKind()
- {
- return $this->kind;
- }
- /**
- * The field type.
- *
- * Generated from protobuf field <code>.google.protobuf.Field.Kind kind = 1;</code>
- * @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 <code>.google.protobuf.Field.Cardinality cardinality = 2;</code>
- * @return int
- */
- public function getCardinality()
- {
- return $this->cardinality;
- }
- /**
- * The field cardinality.
- *
- * Generated from protobuf field <code>.google.protobuf.Field.Cardinality cardinality = 2;</code>
- * @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 <code>int32 number = 3;</code>
- * @return int
- */
- public function getNumber()
- {
- return $this->number;
- }
- /**
- * The field number.
- *
- * Generated from protobuf field <code>int32 number = 3;</code>
- * @param int $var
- * @return $this
- */
- public function setNumber($var)
- {
- GPBUtil::checkInt32($var);
- $this->number = $var;
- return $this;
- }
- /**
- * The field name.
- *
- * Generated from protobuf field <code>string name = 4;</code>
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * The field name.
- *
- * Generated from protobuf field <code>string name = 4;</code>
- * @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 <code>string type_url = 6;</code>
- * @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 <code>string type_url = 6;</code>
- * @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 <code>int32 oneof_index = 7;</code>
- * @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 <code>int32 oneof_index = 7;</code>
- * @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 <code>bool packed = 8;</code>
- * @return bool
- */
- public function getPacked()
- {
- return $this->packed;
- }
- /**
- * Whether to use alternative packed wire representation.
- *
- * Generated from protobuf field <code>bool packed = 8;</code>
- * @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 <code>repeated .google.protobuf.Option options = 9;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getOptions()
- {
- return $this->options;
- }
- /**
- * The protocol buffer options.
- *
- * Generated from protobuf field <code>repeated .google.protobuf.Option options = 9;</code>
- * @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 <code>string json_name = 10;</code>
- * @return string
- */
- public function getJsonName()
- {
- return $this->json_name;
- }
- /**
- * The field JSON name.
- *
- * Generated from protobuf field <code>string json_name = 10;</code>
- * @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 <code>string default_value = 11;</code>
- * @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 <code>string default_value = 11;</code>
- * @param string $var
- * @return $this
- */
- public function setDefaultValue($var)
- {
- GPBUtil::checkString($var, True);
- $this->default_value = $var;
- return $this;
- }
- }
|