• Jie Luo's avatar
    Merge 3.9.x 201908071359 to master (#6484) · 43156775
    Jie Luo authored
    * Add changelog for 3.9.x
    
    * Revert "Make php message class final to avoid mocking (#6277)" (#6324)
    
    This reverts commit 7f84a943.
    This is just temporary. Eventually, we still want to roll forward this
    change. Some users are complaining they need more time to clean up their
    code.
    
    * Update extract_includes.bat.in
    
    File io_win32.h is not in directory google\protobuf\stubs under directory google\protobuf\io
    
    * Set oneof case in array constructor (#6351)
    
    Forgot to set it previously.
    
    * Update protobuf version (#6366)
    
    * Drop building wheel for python 3.4 (#6406)
    
    https://github.com/matthew-brett/multibuild/pull/240
    
    * Fix binary compatibility in FieldCodec factory methods (#6380) (#6424)
    
    * Fix binary compatibility in FieldCodec factory messages
    
    * Make default value parameter for current factories required
    
    * Route old methods through default value overloads
    
    * Remove ExtensionRegistry.Add(params) overload
    
    * Rename ExtensionRegistry.Add(IEnumerable<Extension>) overload to AddRange
    
    * Edit naming of parameters in Extension classes
    
    * * Fix add API warnings to docs for extension APIs
    * Rename internal ExtensionSet.GetValue to TryGetValue
    
    * Disable javadoc error (#6371)
    
    * Disable javadoc error
    
    Actual fixes of the javadoc will be followed up
    
    * Remove duplicated configuration
    
    * Update javadoc plugin version
    
    * Updated Bazel test script to use most recent Bazel version (#6413) (#6433)
    
    I'm not exactly sure why, but this fixes the failing Bazel presubmit
    test. Using the most recent version seems like a good idea anyway so
    that we can make sure we're compatible with any new Bazel changes.
    
    * [bazel] Add fixes for --incompatible_load_{cc,java,proto}_rules_from_bzl
    
    * No need to update version in generated code (#6471)
    
    generate_descriptor will handle that
    
    * Update protobuf version (#6472)
    Unverified
    43156775
EnumValueDescriptorProto.php 3.32 KB
<?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;

/**
 * Describes a value within an enum.
 *
 * Generated from protobuf message <code>google.protobuf.EnumValueDescriptorProto</code>
 */
class EnumValueDescriptorProto extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field <code>optional string name = 1;</code>
     */
    private $name = '';
    private $has_name = false;
    /**
     * Generated from protobuf field <code>optional int32 number = 2;</code>
     */
    private $number = 0;
    private $has_number = false;
    /**
     * Generated from protobuf field <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
     */
    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 <code>optional string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Generated from protobuf field <code>optional string name = 1;</code>
     * @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 <code>optional int32 number = 2;</code>
     * @return int
     */
    public function getNumber()
    {
        return $this->number;
    }

    /**
     * Generated from protobuf field <code>optional int32 number = 2;</code>
     * @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 <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
     * @return \Google\Protobuf\Internal\EnumValueOptions
     */
    public function getOptions()
    {
        return $this->options;
    }

    /**
     * Generated from protobuf field <code>optional .google.protobuf.EnumValueOptions options = 3;</code>
     * @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;
    }

}