Serializable
, Comparable<SimpleFileServer.OutputLevel>
, Constable
SimpleFileServer
public static enum SimpleFileServer.OutputLevel extends Enum<SimpleFileServer.OutputLevel>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant | Description |
---|---|
INFO |
Used to specify the informative log message output level. |
NONE |
Used to specify no log message output level. |
VERBOSE |
Used to specify the verbose log message output level. |
Modifier and Type | Method | Description |
---|---|---|
static SimpleFileServer.OutputLevel |
valueOf |
Returns the enum constant of this class with the specified name. |
static SimpleFileServer.OutputLevel[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final SimpleFileServer.OutputLevel NONE
public static final SimpleFileServer.OutputLevel INFO
The log message format is based on the Common Logfile Format, that includes the following information about an HttpExchange
:
remotehost rfc931 authuser [date] "request" status bytes
Example:
127.0.0.1 - - [22/Jun/2000:13:55:36 -0700] "GET /example.txt HTTP/1.1" 200 -
rfc931
, authuser
and bytes
are not captured in the implementation, so are always represented as '-'
.public static final SimpleFileServer.OutputLevel VERBOSE
Additional to the information provided by the info level, the verbose level includes the request and response headers of the HttpExchange
and the absolute path of the resource served up.
public static SimpleFileServer.OutputLevel[] values()
public static SimpleFileServer.OutputLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.httpserver/com/sun/net/httpserver/SimpleFileServer.OutputLevel.html