public enum IconHandling extends java.lang.Enum<IconHandling>
null
Icon
should be replaced by the default icon or not.Enum Constant and Description |
---|
KEEP_NULL_ICON
The
null Icon is kept, i.e. |
REPLACE_NULL_ICON
The
null Icon always gets replaced by the default icon (if present) |
Modifier and Type | Method and Description |
---|---|
static IconHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IconHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IconHandling KEEP_NULL_ICON
null
Icon
is kept, i.e. it is possible not to show an iconpublic static final IconHandling REPLACE_NULL_ICON
null
Icon
always gets replaced by the default icon (if present)public static IconHandling[] values()
for (IconHandling c : IconHandling.values()) System.out.println(c);
public static IconHandling 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