public static enum Wizard.FinishingType extends Enum<Wizard.FinishingType>
| Enum Constant and Description |
|---|
CANCELABLE
Significa que o wizard pode ser cancelado.
|
CANCELABLE_AND_CLOSEABLE
Significa que o wizard pode ser cancelado e fechado.
|
CLOSEABLE
Significa que o wizard pode ser fechado.
|
| Modifier and Type | Method and Description |
|---|---|
static Wizard.FinishingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wizard.FinishingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Wizard.FinishingType CANCELABLE
public static final Wizard.FinishingType CLOSEABLE
public static final Wizard.FinishingType CANCELABLE_AND_CLOSEABLE
public static Wizard.FinishingType[] values()
for (Wizard.FinishingType c : Wizard.FinishingType.values()) System.out.println(c);
public static Wizard.FinishingType 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 © 2015 Tecgraf/PUC-Rio. All rights reserved.