123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntCommon.proto
- namespace Proto\Api;
- use UnexpectedValueException;
- /**
- * Protobuf type <code>proto.api.YES_NO</code>
- */
- class YES_NO
- {
- /**
- * 保留
- *
- * Generated from protobuf enum <code>YES_NO_RESERVED = 0;</code>
- */
- const YES_NO_RESERVED = 0;
- /**
- * 是/开通/真/拥有/有效/推荐
- *
- * Generated from protobuf enum <code>YES = 1;</code>
- */
- const YES = 1;
- /**
- * 否/关闭/假/不拥有/无效/不推荐
- *
- * Generated from protobuf enum <code>NO = 2;</code>
- */
- const NO = 2;
- private static $valueToName = [
- self::YES_NO_RESERVED => 'YES_NO_RESERVED',
- self::YES => 'YES',
- self::NO => 'NO',
- ];
- public static function name($value)
- {
- if (!isset(self::$valueToName[$value])) {
- throw new UnexpectedValueException(sprintf(
- 'Enum %s has no name defined for value %s', __CLASS__, $value));
- }
- return self::$valueToName[$value];
- }
- public static function value($name)
- {
- $const = __CLASS__ . '::' . strtoupper($name);
- if (!defined($const)) {
- throw new UnexpectedValueException(sprintf(
- 'Enum %s has no value defined for name %s', __CLASS__, $name));
- }
- return constant($const);
- }
- }
|