public enum BrandMode extends Enum<BrandMode>
This attribute is used to specify which Brand icons are shown in the BrandBar element in a dialog.
Specification: dialog.
Enum Constant and Description |
---|
ALL
All supported brand icons are shown in the BrandBar.
|
OFF
No brand icons are shown in the BrandBar.
|
SELECTED
Only the selected brand icon is shown in the BrandBar.
|
Modifier and Type | Method and Description |
---|---|
static BrandMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BrandMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrandMode ALL
All supported brand icons are shown in the BrandBar.
Specification: dialog.
public static final BrandMode SELECTED
Only the selected brand icon is shown in the BrandBar. The brands that shall be displayed have to be defined with the BrandBar tag.
Specification: dialog.
public static final BrandMode OFF
No brand icons are shown in the BrandBar.
Specification: dialog.
public static BrandMode[] values()
for (BrandMode c : BrandMode.values()) System.out.println(c);
public static BrandMode 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