public enum ButtonName extends Enum<ButtonName>
| Enum Constant and Description | 
|---|
CLOSE
The Close button. 
 | 
CONTINUE_INSTALL
The Continue with install button. 
 | 
FINISH
The Finish button. 
 | 
INPUT_PANEL_BUTTON
Input panel button. 
 | 
LAUNCH_STATUS_PANEL
The Launch Status Panel button. 
 | 
NEXT
The Next button. 
 | 
PREVIOUS
The Previous button. 
 | 
QUIT
The Quit button. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ButtonName | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ButtonName[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ButtonName NEXT
public static final ButtonName PREVIOUS
public static final ButtonName QUIT
public static final ButtonName CONTINUE_INSTALL
public static final ButtonName CLOSE
public static final ButtonName FINISH
public static final ButtonName LAUNCH_STATUS_PANEL
public static final ButtonName INPUT_PANEL_BUTTON
public static ButtonName[] values()
for (ButtonName c : ButtonName.values()) System.out.println(c);
public static ButtonName 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 © 2010-2015 ForgeRock AS. All Rights Reserved.