public enum NotifierType extends Enum<NotifierType>
| Enum Constant and Description |
|---|
CDIEVENTBUS |
DATADOG |
EMAIL |
EVENTBUS |
HIPCHAT |
JMS |
LOG |
NEWRELIC |
SLACK |
SNMP |
XMPP |
| Modifier and Type | Method and Description |
|---|---|
static NotifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotifierType LOG
public static final NotifierType HIPCHAT
public static final NotifierType SLACK
public static final NotifierType JMS
public static final NotifierType EMAIL
public static final NotifierType XMPP
public static final NotifierType SNMP
public static final NotifierType EVENTBUS
public static final NotifierType NEWRELIC
public static final NotifierType DATADOG
public static final NotifierType CDIEVENTBUS
public static NotifierType[] values()
for (NotifierType c : NotifierType.values()) System.out.println(c);
public static NotifierType 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 © 2019. All rights reserved.