rv.data.NetworkAPI.Action.API_Clear.Layer */ class Layer { /** * Generated from protobuf enum LAYER_UNKNOWN = 0; */ const LAYER_UNKNOWN = 0; /** * Generated from protobuf enum LAYER_VIDEO_INPUT = 1; */ const LAYER_VIDEO_INPUT = 1; /** * Generated from protobuf enum LAYER_MEDIA = 2; */ const LAYER_MEDIA = 2; /** * Generated from protobuf enum LAYER_PRESENTATION = 3; */ const LAYER_PRESENTATION = 3; /** * Generated from protobuf enum LAYER_ANNOUNCEMENT = 4; */ const LAYER_ANNOUNCEMENT = 4; /** * Generated from protobuf enum LAYER_PROP = 5; */ const LAYER_PROP = 5; /** * Generated from protobuf enum LAYER_MESSAGE = 6; */ const LAYER_MESSAGE = 6; /** * Generated from protobuf enum LAYER_AUDIO = 7; */ const LAYER_AUDIO = 7; private static $valueToName = [ self::LAYER_UNKNOWN => 'LAYER_UNKNOWN', self::LAYER_VIDEO_INPUT => 'LAYER_VIDEO_INPUT', self::LAYER_MEDIA => 'LAYER_MEDIA', self::LAYER_PRESENTATION => 'LAYER_PRESENTATION', self::LAYER_ANNOUNCEMENT => 'LAYER_ANNOUNCEMENT', self::LAYER_PROP => 'LAYER_PROP', self::LAYER_MESSAGE => 'LAYER_MESSAGE', self::LAYER_AUDIO => 'LAYER_AUDIO', ]; 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); } }