rv.data.Timer.Format.Style
*/
class Style
{
/**
* Generated from protobuf enum STYE_NONE = 0;
*/
const STYE_NONE = 0;
/**
* Generated from protobuf enum STYLE_SHORT = 1;
*/
const STYLE_SHORT = 1;
/**
* Generated from protobuf enum STYLE_LONG = 2;
*/
const STYLE_LONG = 2;
/**
* Generated from protobuf enum STYLE_REMOVE_SHORT = 3;
*/
const STYLE_REMOVE_SHORT = 3;
/**
* Generated from protobuf enum STYLE_REMOVE_LONG = 4;
*/
const STYLE_REMOVE_LONG = 4;
private static $valueToName = [
self::STYE_NONE => 'STYE_NONE',
self::STYLE_SHORT => 'STYLE_SHORT',
self::STYLE_LONG => 'STYLE_LONG',
self::STYLE_REMOVE_SHORT => 'STYLE_REMOVE_SHORT',
self::STYLE_REMOVE_LONG => 'STYLE_REMOVE_LONG',
];
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);
}
}