public enum NotificationDisplayType extends java.lang.Enum<NotificationDisplayType>
| Enum Constant and Description |
|---|
BALLOON
Expires automatically after 10 seconds.
|
NONE |
STICKY_BALLOON
Needs to be closed by user.
|
TOOL_WINDOW |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getTitle() |
static NotificationDisplayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationDisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationDisplayType NONE
public static final NotificationDisplayType BALLOON
public static final NotificationDisplayType STICKY_BALLOON
public static final NotificationDisplayType TOOL_WINDOW
public static NotificationDisplayType[] values()
for (NotificationDisplayType c : NotificationDisplayType.values()) System.out.println(c);
public static NotificationDisplayType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getTitle()