Creates a media type with the "video" type and the given subtype. @throws IllegalArgumentException if subtype is invalid
(String subtype)
| 888 | */ |
| 889 | |
| 890 | static MediaType createVideoType(String subtype) { |
| 891 | return create(VIDEO_TYPE, subtype); |
| 892 | } |
| 893 | |
| 894 | private static MediaType create(String type, String subtype, Multimap<String, String> parameters) { |
| 895 | checkNotNull(type); |