public enum MailMonitoringMetric extends Enum<MailMonitoringMetric>
| Enum Constant and Description |
|---|
NUMBER_OF_EMAILS_SENT |
NUMBER_OF_ITEMS_ADDED_TO_ERROR_QUEUE |
NUMBER_OF_ITEMS_ADDED_TO_QUEUE |
NUMBER_OF_ITEMS_PROCESSED |
| Modifier and Type | Method and Description |
|---|---|
static MailMonitoringMetric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailMonitoringMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailMonitoringMetric NUMBER_OF_ITEMS_ADDED_TO_QUEUE
public static final MailMonitoringMetric NUMBER_OF_ITEMS_ADDED_TO_ERROR_QUEUE
public static final MailMonitoringMetric NUMBER_OF_ITEMS_PROCESSED
public static final MailMonitoringMetric NUMBER_OF_EMAILS_SENT
public static MailMonitoringMetric[] values()
for (MailMonitoringMetric c : MailMonitoringMetric.values()) System.out.println(c);
public static MailMonitoringMetric 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 © 2002-2024 Atlassian. All Rights Reserved.