public enum ImageStyle extends java.lang.Enum<ImageStyle>
TOP - also known as "standard", images will be placed above the header, text, and buttons. GRAPHIC - images will take up the entire message area and appear behind any buttons.
Modifier and Type | Method and Description |
---|---|
static ImageStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageStyle GRAPHIC
public static final ImageStyle TOP
public static ImageStyle[] values()
for (ImageStyle c : ImageStyle.values()) System.out.println(c);
public static ImageStyle 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 null