public static enum HttpServer.Parameter extends java.lang.Enum<HttpServer.Parameter>
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
def() |
static HttpServer.Parameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpServer.Parameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpServer.Parameter NETTASK_SENDBUF_SIZE
public static final HttpServer.Parameter NETTASK_RECVBUF_SIZE
public static final HttpServer.Parameter NETSERVER_BACKLOG
public static final HttpServer.Parameter NETSERVER_WORKMODE
public static final HttpServer.Parameter HTTP2_HEADER_TABLE_SIZE
public static final HttpServer.Parameter HTTP2_MAX_CONCURRENT_STREAMS
public static final HttpServer.Parameter HTTP2_INITIAL_WINDOW_SIZE
public static final HttpServer.Parameter HTTP2_MAX_FRAME_SIZE
public static final HttpServer.Parameter HTTP2_MAX_HEADER_LIST_SIZE
public static final HttpServer.Parameter HTTP2_WINDOW_UPDATE_ACCUMULATE_PERCENT
public static final HttpServer.Parameter HTTP2_SETTINGS_ENABLE_CONNECT_PROTOCOL
public static final HttpServer.Parameter HTTP2_SETTINGS_TIMEOUT
public static final HttpServer.Parameter HTTP2_CONNECTION_WINDOW_SIZE
public static final HttpServer.Parameter HTTP2_RTT_MEASURE_PERIOD
public static final HttpServer.Parameter HTTP2_RTT_SAMPLES
public static final HttpServer.Parameter HTTP2_PING_TIMEOUT
public static final HttpServer.Parameter HTTP2_INCOMPLETE_FRAME_TIMEOUT
public static final HttpServer.Parameter HTTP2_IDLE_TIMEOUT
public static final HttpServer.Parameter HTTP2_ALLOW_FORCE_CLOSE
public static final HttpServer.Parameter HTTP11_PARSER_LINE_CHARACTERS_MAX
public static final HttpServer.Parameter HTTP11_PARSER_HEADER_LINES_MAX
public static final HttpServer.Parameter HTTP11_REQUEST_TIMEOUT
public static final HttpServer.Parameter HTTP11_CLOSE_TIMEOUT
public static final HttpServer.Parameter FLOWCONTROL_WINDOW_SIZE
public static final HttpServer.Parameter CONGESTION_TIMEOUT
public static final HttpServer.Parameter WEBSOCKET_MAX_INCOMING_MESSAGE_SIZE
public static final HttpServer.Parameter WEBSOCKET_DEFAULT_FINAL_TIMEOUT
public static final HttpServer.Parameter HANDLER_403
public static final HttpServer.Parameter HANDLER_404
public static final HttpServer.Parameter HANDLER_ASTERISK
public static HttpServer.Parameter[] values()
for (HttpServer.Parameter c : HttpServer.Parameter.values()) System.out.println(c);
public static HttpServer.Parameter valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.Object def()