Creates a media type with the "application" type and the given subtype. @throws IllegalArgumentException if subtype is invalid
(String subtype)
| 848 | */ |
| 849 | |
| 850 | static MediaType createApplicationType(String subtype) { |
| 851 | return create(APPLICATION_TYPE, subtype); |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * Creates a media type with the "audio" type and the given subtype. |