public static enum AbstractTab.TabType extends Enum<AbstractTab.TabType>
| Enum Constant and Description |
|---|
RELOADABLE
Aba recarregável (ex: aba de log).
|
STATIC
Aba estática (ex: aba de parâmetros).
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractTab.TabType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractTab.TabType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractTab.TabType STATIC
public static final AbstractTab.TabType RELOADABLE
public static AbstractTab.TabType[] values()
for (AbstractTab.TabType c : AbstractTab.TabType.values()) System.out.println(c);
public static AbstractTab.TabType 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 nullCopyright © 2019. All rights reserved.