Package org.apache.coyote
Enum ContinueResponseTiming
- java.lang.Object
- 
- java.lang.Enum<ContinueResponseTiming>
- 
- org.apache.coyote.ContinueResponseTiming
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ContinueResponseTiming>
 
 public enum ContinueResponseTiming extends java.lang.Enum<ContinueResponseTiming> Defines timing options for responding to requests that contain a '100-continue' expectations.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ALWAYSInternal use only.IMMEDIATELYTomcat will automatically send the 100 intermediate response before sending the request to the servlet.ON_REQUEST_BODY_READSend 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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContinueResponseTimingfromString(java.lang.String value)java.lang.StringtoString()static ContinueResponseTimingvalueOf(java.lang.String name)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 Detail- 
IMMEDIATELYpublic static final ContinueResponseTiming IMMEDIATELY Tomcat will automatically send the 100 intermediate response before sending the request to the servlet.
 - 
ON_REQUEST_BODY_READpublic static final ContinueResponseTiming 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
 
 - 
ALWAYSpublic static final ContinueResponseTiming ALWAYS Internal use only. Used to indicate that the 100 intermediate response should be sent if possible regardless of the current configuration.
 
- 
 - 
Method Detail- 
valuespublic static ContinueResponseTiming[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ContinueResponseTiming c : ContinueResponseTiming.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ContinueResponseTiming valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
fromStringpublic static ContinueResponseTiming fromString(java.lang.String value) 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<ContinueResponseTiming>
 
 
- 
 
-