EnumValueDescriptorProto.php 3.36 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/protobuf/descriptor.proto

namespace Google\Protobuf\Internal;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\InputStream;
use Google\Protobuf\Internal\GPBUtil;
12
use Google\Protobuf\Internal\GPBWrapperUtils;
13 14 15 16

/**
 * Describes a value within an enum.
 *
17
 * Generated from protobuf message <code>google.protobuf.EnumValueDescriptorProto</code>
18 19 20 21
 */
class EnumValueDescriptorProto extends \Google\Protobuf\Internal\Message
{
    /**
22
     * Generated from protobuf field <code>optional string name = 1;</code>
23 24 25 26
     */
    private $name = '';
    private $has_name = false;
    /**
27
     * Generated from protobuf field <code>optional int32 number = 2;</code>
28 29 30 31
     */
    private $number = 0;
    private $has_number = false;
    /**
32
     * Generated from protobuf field <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
33 34 35 36
     */
    private $options = null;
    private $has_options = false;

37 38 39 40 41 42 43 44 45 46 47 48
    /**
     * 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) {
49
        \GPBMetadata\Google\Protobuf\Internal\Descriptor::initOnce();
50
        parent::__construct($data);
51 52 53
    }

    /**
54 55
     * Generated from protobuf field <code>optional string name = 1;</code>
     * @return string
56 57 58 59 60 61 62
     */
    public function getName()
    {
        return $this->name;
    }

    /**
63 64 65
     * Generated from protobuf field <code>optional string name = 1;</code>
     * @param string $var
     * @return $this
66 67 68 69 70 71
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;
        $this->has_name = true;
72 73

        return $this;
74 75 76 77 78 79 80 81
    }

    public function hasName()
    {
        return $this->has_name;
    }

    /**
82 83
     * Generated from protobuf field <code>optional int32 number = 2;</code>
     * @return int
84 85 86 87 88 89 90
     */
    public function getNumber()
    {
        return $this->number;
    }

    /**
91 92 93
     * Generated from protobuf field <code>optional int32 number = 2;</code>
     * @param int $var
     * @return $this
94 95 96 97 98 99
     */
    public function setNumber($var)
    {
        GPBUtil::checkInt32($var);
        $this->number = $var;
        $this->has_number = true;
100 101

        return $this;
102 103 104 105 106 107 108 109
    }

    public function hasNumber()
    {
        return $this->has_number;
    }

    /**
110 111
     * Generated from protobuf field <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
     * @return \Google\Protobuf\Internal\EnumValueOptions
112 113 114 115 116 117 118
     */
    public function getOptions()
    {
        return $this->options;
    }

    /**
119 120 121
     * Generated from protobuf field <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
     * @param \Google\Protobuf\Internal\EnumValueOptions $var
     * @return $this
122
     */
123
    public function setOptions($var)
124 125 126 127
    {
        GPBUtil::checkMessage($var, \Google\Protobuf\Internal\EnumValueOptions::class);
        $this->options = $var;
        $this->has_options = true;
128 129

        return $this;
130 131 132 133 134 135 136 137 138
    }

    public function hasOptions()
    {
        return $this->has_options;
    }

}