public static enum FailureSummaryAppenderListener.CallbackType extends Enum<FailureSummaryAppenderListener.CallbackType>
| Enum Constant and Description |
|---|
APPEND
Callback for appending events to the appender.
|
CONNECT
Callback for creating TCP connections for a TCP appender.
|
SEND
Callback for sending events from a TCP appender.
|
| Modifier and Type | Method and Description |
|---|---|
static FailureSummaryAppenderListener.CallbackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FailureSummaryAppenderListener.CallbackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailureSummaryAppenderListener.CallbackType APPEND
public static final FailureSummaryAppenderListener.CallbackType SEND
public static final FailureSummaryAppenderListener.CallbackType CONNECT
public static FailureSummaryAppenderListener.CallbackType[] values()
for (FailureSummaryAppenderListener.CallbackType c : FailureSummaryAppenderListener.CallbackType.values()) System.out.println(c);
public static FailureSummaryAppenderListener.CallbackType 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 © 2020. All rights reserved.