public enum NotificationStyle extends java.lang.Enum<NotificationStyle>
NotificationManager| Enum Constant and Description |
|---|
mac
Mac OS X notification style.
|
web
WebLaF notification style.
|
| Modifier and Type | Method and Description |
|---|---|
Painter |
getPainter()
Returns cached painter for this notification style.
|
static NotificationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationStyle web
public static final NotificationStyle mac
public static NotificationStyle[] values()
for (NotificationStyle c : NotificationStyle.values()) System.out.println(c);
public static NotificationStyle 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 Painter getPainter()