Enum Class CapturePoint
- All Implemented Interfaces:
Serializable
,Comparable<CapturePoint>
,Constable
Specify where the message capture takes place. If 'NONE' is set amongst the list,
it takes precedences of the others.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPrints all of the messages.Prints the filtered request (Filter only).Prints the filtered response (Filter only).Disable the capture.Prints input request.Prints the output response. -
Method Summary
Modifier and TypeMethodDescriptionstatic CapturePoint
Returns the enum constant of this class with the specified name.static CapturePoint[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
Prints all of the messages. -
FILTERED_REQUEST
Prints the filtered request (Filter only). -
FILTERED_RESPONSE
Prints the filtered response (Filter only). -
REQUEST
Prints input request. -
RESPONSE
Prints the output response. In case of a filter, this represents the response produced by the next handler. In case of a handler, this represents the handler's produced response object. -
NONE
Disable the capture.
-
-
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
-