Package io.vertx.mutiny.ext.web
Interface ParsedHeaderValue
-
- All Known Implementing Classes:
LanguageHeader
,MIMEHeader
public interface ParsedHeaderValue
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description io.vertx.ext.web.ParsedHeaderValue
getDelegate()
boolean
isMatchedBy(ParsedHeaderValue matchTry)
boolean
isPermitted()
static ParsedHeaderValue
newInstance(io.vertx.ext.web.ParsedHeaderValue arg)
String
parameter(String key)
Map<String,String>
parameters()
String
rawValue()
String
value()
float
weight()
int
weightedOrder()
-
-
-
Method Detail
-
getDelegate
io.vertx.ext.web.ParsedHeaderValue getDelegate()
-
rawValue
String rawValue()
- Returns:
-
value
String value()
- Returns:
-
weight
float weight()
- Returns:
-
parameters
Map<String,String> parameters()
- Returns:
- Unmodifiable Map of parameters of this header value
-
isPermitted
boolean isPermitted()
- Returns:
-
isMatchedBy
boolean isMatchedBy(ParsedHeaderValue matchTry)
- Parameters:
matchTry
- The header to be matched from- Returns:
- true if this header represents a subset of matchTry, otherwise, false
-
weightedOrder
int weightedOrder()
- Returns:
-
newInstance
static ParsedHeaderValue newInstance(io.vertx.ext.web.ParsedHeaderValue arg)
-
-