Package org.apache.coyote
Enum ContinueResponseTiming
- All Implemented Interfaces:
Serializable
,Comparable<ContinueResponseTiming>
,java.lang.constant.Constable
Defines timing options for responding to requests that contain a '100-continue' expectations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInternal use only.Tomcat will automatically send the 100 intermediate response before sending the request to the servlet.Send the 100 intermediate response only when the servlet attempts to read the request's body by either: calling read on the InputStream returned by HttpServletRequest.getInputStream calling read on the BufferedReader returned by HttpServletRequest.getReader This allows the servlet to process the request headers and possibly respond before reading the request body. -
Method Summary
Modifier and TypeMethodDescriptionstatic ContinueResponseTiming
fromString
(String value) toString()
static ContinueResponseTiming
Returns the enum constant of this type with the specified name.static ContinueResponseTiming[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IMMEDIATELY
Tomcat will automatically send the 100 intermediate response before sending the request to the servlet. -
ON_REQUEST_BODY_READ
Send the 100 intermediate response only when the servlet attempts to read the request's body by either:- calling read on the InputStream returned by HttpServletRequest.getInputStream
- calling read on the BufferedReader returned by HttpServletRequest.getReader
-
ALWAYS
Internal use only. Used to indicate that the 100 intermediate response should be sent if possible regardless of the current configuration.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
-
toString
- Overrides:
toString
in classEnum<ContinueResponseTiming>
-