public static enum ICombinedPanel.What extends Enum<ICombinedPanel.What>
Modifier and Type | Method and Description |
---|---|
boolean |
hasBG() |
boolean |
hasFG() |
static ICombinedPanel.What |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICombinedPanel.What[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICombinedPanel.What BG
public static final ICombinedPanel.What FG
public static final ICombinedPanel.What BG_AND_FG
public static ICombinedPanel.What[] values()
for (ICombinedPanel.What c : ICombinedPanel.What.values()) System.out.println(c);
public static ICombinedPanel.What 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 nullpublic boolean hasBG()
true
if this
contains the background.public boolean hasFG()
true
if this
contains the foreground.Copyright © 2012–2016. All rights reserved.