- All Implemented Interfaces:
Serializable
,Comparable<SimpleFileServer.OutputLevel>
,Constable
- Enclosing class:
SimpleFileServer
Describes the log message output level produced by the server when
processing exchanges.
- Since:
- 18
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleFileServer.OutputLevel
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.
-
Enum Constant Details
-
NONE
Used to specify no log message output level. -
INFO
Used to specify the informative log message output level.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 -
- Implementation Note:
- The fields
rfc931
,authuser
andbytes
are not captured in the implementation, so are always represented as'-'
.
-
VERBOSE
Used to specify the verbose log message output level.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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-