Class HttpCharsetRange
java.lang.Object
org.apache.pekko.http.javadsl.model.HttpCharsetRange
- Direct Known Subclasses:
- HttpCharsetRange
Represents an Http charset range. This can either be `*` which matches all charsets or a specific
 charset. 
HttpCharsetRanges contains static constructors for HttpCharsetRanges.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract booleanmatches(HttpCharset charset) Returns if the given charset matches this range.abstract floatqValue()The qValue for this range.abstract HttpCharsetRangewithQValue(float qValue) Returns a copy of this range with the given qValue.
- 
Constructor Details- 
HttpCharsetRangepublic HttpCharsetRange()
 
- 
- 
Method Details- 
qValuepublic abstract float qValue()The qValue for this range.
- 
matchesReturns if the given charset matches this range.
- 
withQValueReturns a copy of this range with the given qValue.
 
-