rv.data.Graphics.Text.ChordPro.Notation
*/
class Notation
{
/**
* Generated from protobuf enum NOTATION_CHORDS = 0;
*/
const NOTATION_CHORDS = 0;
/**
* Generated from protobuf enum NOTATION_NUMBERS = 1;
*/
const NOTATION_NUMBERS = 1;
/**
* Generated from protobuf enum NOTATION_NUMERALS = 2;
*/
const NOTATION_NUMERALS = 2;
/**
* Generated from protobuf enum NOTATION_DO_RE_MI = 3;
*/
const NOTATION_DO_RE_MI = 3;
private static $valueToName = [
self::NOTATION_CHORDS => 'NOTATION_CHORDS',
self::NOTATION_NUMBERS => 'NOTATION_NUMBERS',
self::NOTATION_NUMERALS => 'NOTATION_NUMERALS',
self::NOTATION_DO_RE_MI => 'NOTATION_DO_RE_MI',
];
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);
}
}