public enum CapturePoint extends Enum<CapturePoint>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
static CapturePoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CapturePoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapturePoint ALL
public static final CapturePoint FILTERED_REQUEST
public static final CapturePoint FILTERED_RESPONSE
public static final CapturePoint REQUEST
public static final CapturePoint RESPONSE
public static CapturePoint[] values()
for (CapturePoint c : CapturePoint.values()) System.out.println(c);
public static CapturePoint valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2025 Open Identity Platform Community. All rights reserved.