public static enum DefaultTabContentFilter.Behavior extends Enum<DefaultTabContentFilter.Behavior>
DefaultTabContentFilter
how it behaves.Enum Constant and Description |
---|
ALL
paint icon and text
|
ICON_ONLY
paint only the icon
|
ICON_OVER_TEXT
paint icon, or if missing paint text
|
TEXT_ONLY
paint only the text
|
TEXT_OVER_ICON
paint text, or if missing paint icon
|
Modifier and Type | Method and Description |
---|---|
static DefaultTabContentFilter.Behavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultTabContentFilter.Behavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultTabContentFilter.Behavior ALL
public static final DefaultTabContentFilter.Behavior ICON_ONLY
public static final DefaultTabContentFilter.Behavior TEXT_ONLY
public static final DefaultTabContentFilter.Behavior ICON_OVER_TEXT
public static final DefaultTabContentFilter.Behavior TEXT_OVER_ICON
public static DefaultTabContentFilter.Behavior[] values()
for (DefaultTabContentFilter.Behavior c : DefaultTabContentFilter.Behavior.values()) System.out.println(c);
public static DefaultTabContentFilter.Behavior 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