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.ParsedHeaderValuegetDelegate()booleanisMatchedBy(ParsedHeaderValue matchTry)booleanisPermitted()static ParsedHeaderValuenewInstance(io.vertx.ext.web.ParsedHeaderValue arg)Stringparameter(String key)Map<String,String>parameters()StringrawValue()Stringvalue()floatweight()intweightedOrder() 
 - 
 
- 
- 
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)
 
 - 
 
 -