rv.data.Media.ScaleBehavior */ class ScaleBehavior { /** * Generated from protobuf enum SCALE_BEHAVIOR_FIT = 0; */ const SCALE_BEHAVIOR_FIT = 0; /** * Generated from protobuf enum SCALE_BEHAVIOR_FILL = 1; */ const SCALE_BEHAVIOR_FILL = 1; /** * Generated from protobuf enum SCALE_BEHAVIOR_STRETCH = 2; */ const SCALE_BEHAVIOR_STRETCH = 2; /** * Generated from protobuf enum SCALE_BEHAVIOR_CUSTOM = 3; */ const SCALE_BEHAVIOR_CUSTOM = 3; private static $valueToName = [ self::SCALE_BEHAVIOR_FIT => 'SCALE_BEHAVIOR_FIT', self::SCALE_BEHAVIOR_FILL => 'SCALE_BEHAVIOR_FILL', self::SCALE_BEHAVIOR_STRETCH => 'SCALE_BEHAVIOR_STRETCH', self::SCALE_BEHAVIOR_CUSTOM => 'SCALE_BEHAVIOR_CUSTOM', ]; 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); } }