- java.lang.Object
-
- swim.http.HttpPart
-
- swim.http.HttpHeader
-
- swim.http.header.AllowHeader
-
- All Implemented Interfaces:
Comparable<HttpHeader>,Debug
public final class AllowHeader extends HttpHeader
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AllowHeadercreate(String... methodStrings)static AllowHeadercreate(FingerTrieSeq<HttpMethod> methods)static AllowHeadercreate(HttpMethod... methods)<T> Output<T>debug(Output<T> output)Writes a developer readable, debug-formatted string representation of this object tooutput.static AllowHeaderempty()booleanequals(Object other)inthashCode()booleanisBlank()StringlowerCaseName()FingerTrieSeq<HttpMethod>methods()Stringname()static Parser<AllowHeader>parseHeaderValue(Input input, HttpParser http)Writer<?,?>writeHeaderValue(Output<?> output, HttpWriter http)-
Methods inherited from class swim.http.HttpHeader
compareTo, httpWriter, parseHttp, toString, value, writeHttp
-
Methods inherited from class swim.http.HttpPart
httpWriter, toHttp, writeHttp
-
-
-
-
Method Detail
-
isBlank
public boolean isBlank()
- Overrides:
isBlankin classHttpHeader
-
lowerCaseName
public String lowerCaseName()
- Specified by:
lowerCaseNamein classHttpHeader
-
name
public String name()
- Specified by:
namein classHttpHeader
-
methods
public FingerTrieSeq<HttpMethod> methods()
-
writeHeaderValue
public Writer<?,?> writeHeaderValue(Output<?> output, HttpWriter http)
- Specified by:
writeHeaderValuein classHttpHeader
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:DebugWrites a developer readable, debug-formatted string representation of this object tooutput.- Specified by:
debugin interfaceDebug- Specified by:
debugin classHttpHeader- Returns:
- the continuation of the
output.
-
empty
public static AllowHeader empty()
-
create
public static AllowHeader create(FingerTrieSeq<HttpMethod> methods)
-
create
public static AllowHeader create(HttpMethod... methods)
-
create
public static AllowHeader create(String... methodStrings)
-
parseHeaderValue
public static Parser<AllowHeader> parseHeaderValue(Input input, HttpParser http)
-
-