rv.data.Graphics.Text.Attributes.Capitalization
*/
class Capitalization
{
/**
* Generated from protobuf enum CAPITALIZATION_NONE = 0;
*/
const CAPITALIZATION_NONE = 0;
/**
* Generated from protobuf enum CAPITALIZATION_ALL_CAPS = 1;
*/
const CAPITALIZATION_ALL_CAPS = 1;
/**
* Generated from protobuf enum CAPITALIZATION_SMALL_CAPS = 2;
*/
const CAPITALIZATION_SMALL_CAPS = 2;
/**
* Generated from protobuf enum CAPITALIZATION_TITLE_CASE = 3;
*/
const CAPITALIZATION_TITLE_CASE = 3;
/**
* Generated from protobuf enum CAPITALIZATION_START_CASE = 4;
*/
const CAPITALIZATION_START_CASE = 4;
private static $valueToName = [
self::CAPITALIZATION_NONE => 'CAPITALIZATION_NONE',
self::CAPITALIZATION_ALL_CAPS => 'CAPITALIZATION_ALL_CAPS',
self::CAPITALIZATION_SMALL_CAPS => 'CAPITALIZATION_SMALL_CAPS',
self::CAPITALIZATION_TITLE_CASE => 'CAPITALIZATION_TITLE_CASE',
self::CAPITALIZATION_START_CASE => 'CAPITALIZATION_START_CASE',
];
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);
}
}