NamePart.php 2.96 KB
Newer Older
1 2 3 4
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/protobuf/descriptor.proto

5
namespace Google\Protobuf\Internal\UninterpretedOption;
6 7 8 9 10 11

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 17 18 19 20

/**
 * The name of the uninterpreted option.  Each string represents a segment in
 * a dot-separated name.  is_extension is true iff a segment represents an
 * extension (denoted with parentheses in options specs in .proto files).
 * E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents
 * "foo.(bar.baz).qux".
 *
21
 * Generated from protobuf message <code>google.protobuf.UninterpretedOption.NamePart</code>
22
 */
23
class NamePart extends \Google\Protobuf\Internal\Message
24 25
{
    /**
26
     * Generated from protobuf field <code>required string name_part = 1;</code>
27 28 29 30
     */
    private $name_part = '';
    private $has_name_part = false;
    /**
31
     * Generated from protobuf field <code>required bool is_extension = 2;</code>
32 33 34 35
     */
    private $is_extension = false;
    private $has_is_extension = false;

36 37 38 39 40 41 42 43 44 45 46
    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name_part
     *     @type bool $is_extension
     * }
     */
    public function __construct($data = NULL) {
47
        \GPBMetadata\Google\Protobuf\Internal\Descriptor::initOnce();
48
        parent::__construct($data);
49 50 51
    }

    /**
52 53
     * Generated from protobuf field <code>required string name_part = 1;</code>
     * @return string
54 55 56 57 58 59 60
     */
    public function getNamePart()
    {
        return $this->name_part;
    }

    /**
61 62 63
     * Generated from protobuf field <code>required string name_part = 1;</code>
     * @param string $var
     * @return $this
64 65 66 67 68 69
     */
    public function setNamePart($var)
    {
        GPBUtil::checkString($var, True);
        $this->name_part = $var;
        $this->has_name_part = true;
70 71

        return $this;
72 73 74 75 76 77 78 79
    }

    public function hasNamePart()
    {
        return $this->has_name_part;
    }

    /**
80 81
     * Generated from protobuf field <code>required bool is_extension = 2;</code>
     * @return bool
82 83 84 85 86 87 88
     */
    public function getIsExtension()
    {
        return $this->is_extension;
    }

    /**
89 90 91
     * Generated from protobuf field <code>required bool is_extension = 2;</code>
     * @param bool $var
     * @return $this
92 93 94 95 96 97
     */
    public function setIsExtension($var)
    {
        GPBUtil::checkBool($var);
        $this->is_extension = $var;
        $this->has_is_extension = true;
98 99

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

    public function hasIsExtension()
    {
        return $this->has_is_extension;
    }

}

109 110 111
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NamePart::class, \Google\Protobuf\Internal\UninterpretedOption_NamePart::class);