public static enum WizardDialog.TabPosition extends java.lang.Enum<WizardDialog.TabPosition>
| Enum Constant and Description |
|---|
NO_HEADER
If the tabs should never be shown in the header.
|
PREFER_HEADER
If the tabs should be shown in the header, if the dialog contains a header, regardless of
whether a title or message is shown.
|
USE_HEADER
If the tabs should be shown in the header, if the dialog contains a header and if no
title and message are shown.
|
| Modifier and Type | Method and Description |
|---|---|
static WizardDialog.TabPosition |
fromValue(int value)
Creates and returns the position, which corresponds to a specific value.
|
int |
getValue()
Returns the position's value.
|
static WizardDialog.TabPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WizardDialog.TabPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WizardDialog.TabPosition USE_HEADER
public static final WizardDialog.TabPosition PREFER_HEADER
public static final WizardDialog.TabPosition NO_HEADER
public static WizardDialog.TabPosition[] values()
for (WizardDialog.TabPosition c : WizardDialog.TabPosition.values()) System.out.println(c);
public static WizardDialog.TabPosition 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 nullpublic final int getValue()
Integer valuepublic static WizardDialog.TabPosition fromValue(int value)
value - The value, the position, which should be returned, corresponds to, as an Integer valueWizardDialog.TabPosition