public enum NotificationFormat extends Enum<NotificationFormat>
Enum Constant and Description |
---|
ALERT
Notification displayed in the UI (as an "alert").
|
EMAIL
Notification sent by email.
|
Modifier and Type | Method and Description |
---|---|
static NotificationFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationFormat ALERT
public static final NotificationFormat EMAIL
public static NotificationFormat[] values()
for (NotificationFormat c : NotificationFormat.values()) System.out.println(c);
public static NotificationFormat 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 © 2004–2021 XWiki. All rights reserved.