Enum Class SimpleFileServer.OutputLevel
- 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 SummaryNested classes/interfaces declared in class EnumEnum.EnumDesc<E>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic SimpleFileServer.OutputLevelReturns 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- 
NONEUsed to specify no log message output level.
- 
INFOUsed 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 bytesExample: 127.0.0.1 - - [22/Jun/2000:13:55:36 -0700] "GET /example.txt HTTP/1.1" 200 -- Implementation Note:
- The fields rfc931,authuserandbytesare not captured in the implementation, so are always represented as'-'.
 
- 
VERBOSEUsed 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 HttpExchangeand the absolute path of the resource served up.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-