- java.lang.Object
-
- io.helidon.media.common.ContentTypeCharset
-
@Deprecated public class ContentTypeCharset extends Object
Deprecated.since 2.0.0, useMessageBodyContext.charset()insteadAccessor for theCharsetspecified by a content-type header.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static CharsetdetermineCharset(Parameters headers)Deprecated.Returns theCharsetspecified in the content-type header, usingStandardCharsets.UTF_8as the default.static CharsetdetermineCharset(Parameters headers, Charset defaultCharset)Deprecated.Returns theCharsetspecified in the content type header.
-
-
-
Method Detail
-
determineCharset
public static Charset determineCharset(Parameters headers)
Deprecated.Returns theCharsetspecified in the content-type header, usingStandardCharsets.UTF_8as the default.- Parameters:
headers- The headers.- Returns:
- The charset.
-
determineCharset
public static Charset determineCharset(Parameters headers, Charset defaultCharset)
Deprecated.Returns theCharsetspecified in the content type header. If not provided or an error occurs on lookup, the given default is returned.- Parameters:
headers- The headers.defaultCharset- The default.- Returns:
- The charset.
-
-