public enum NotificationChannelType extends Enum<NotificationChannelType>
| Enum Constant and Description |
|---|
EMAIL
EMAIL
|
PORTAL
PORTAL
|
TWITTER
TWITTER
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationChannelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationChannelType PORTAL
public static final NotificationChannelType EMAIL
public static final NotificationChannelType TWITTER
public static NotificationChannelType[] values()
for (NotificationChannelType c : NotificationChannelType.values()) System.out.println(c);
public static NotificationChannelType 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.