YES_NO.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCommon.proto
  5. namespace Proto\Api;
  6. use UnexpectedValueException;
  7. /**
  8. * Protobuf type <code>proto.api.YES_NO</code>
  9. */
  10. class YES_NO
  11. {
  12. /**
  13. * 保留
  14. *
  15. * Generated from protobuf enum <code>YES_NO_RESERVED = 0;</code>
  16. */
  17. const YES_NO_RESERVED = 0;
  18. /**
  19. * 是/开通/真/拥有/有效/推荐
  20. *
  21. * Generated from protobuf enum <code>YES = 1;</code>
  22. */
  23. const YES = 1;
  24. /**
  25. * 否/关闭/假/不拥有/无效/不推荐
  26. *
  27. * Generated from protobuf enum <code>NO = 2;</code>
  28. */
  29. const NO = 2;
  30. private static $valueToName = [
  31. self::YES_NO_RESERVED => 'YES_NO_RESERVED',
  32. self::YES => 'YES',
  33. self::NO => 'NO',
  34. ];
  35. public static function name($value)
  36. {
  37. if (!isset(self::$valueToName[$value])) {
  38. throw new UnexpectedValueException(sprintf(
  39. 'Enum %s has no name defined for value %s', __CLASS__, $value));
  40. }
  41. return self::$valueToName[$value];
  42. }
  43. public static function value($name)
  44. {
  45. $const = __CLASS__ . '::' . strtoupper($name);
  46. if (!defined($const)) {
  47. throw new UnexpectedValueException(sprintf(
  48. 'Enum %s has no value defined for name %s', __CLASS__, $name));
  49. }
  50. return constant($const);
  51. }
  52. }