Returns a new instance with the same type and subtype as this instance, but without any parameters.
()
| 731 | |
| 732 | |
| 733 | public MediaType withoutParameters() { |
| 734 | return parameters.isEmpty() ? this : create(type, subtype); |
| 735 | } |
| 736 | |
| 737 | /** |
| 738 | * <em>Replaces</em> all parameters with the given parameters. |