public static enum TabConfiguration.IconHiding extends Enum<TabConfiguration.IconHiding>
Enum Constant and Description |
---|
NEVER
The icon is never made invisible
|
NO_SPACE_LEFT
If there is not enough space to paint the full icon, then it is not painted at all
|
TEXT_DISAPPEARING
If there is not enough space to paint text and icon at the same time, then the icon is not painted at all
|
Modifier and Type | Method and Description |
---|---|
static TabConfiguration.IconHiding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabConfiguration.IconHiding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabConfiguration.IconHiding NEVER
public static final TabConfiguration.IconHiding NO_SPACE_LEFT
public static final TabConfiguration.IconHiding TEXT_DISAPPEARING
public static TabConfiguration.IconHiding[] values()
for (TabConfiguration.IconHiding c : TabConfiguration.IconHiding.values()) System.out.println(c);
public static TabConfiguration.IconHiding 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 null