public enum LeavePageResponse extends Enum<LeavePageResponse>
| Enum Constant and Description |
|---|
DISPLAY_YES_NO_DIALOG |
NO_STAY_ON_CURRENT_PAGE |
YES_LEAVE_PAGE |
| Modifier and Type | Method and Description |
|---|---|
static LeavePageResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeavePageResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeavePageResponse NO_STAY_ON_CURRENT_PAGE
public static final LeavePageResponse YES_LEAVE_PAGE
public static final LeavePageResponse DISPLAY_YES_NO_DIALOG
public static LeavePageResponse[] values()
for (LeavePageResponse c : LeavePageResponse.values()) System.out.println(c);
public static LeavePageResponse 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 © 2011–2015 SWM. All rights reserved.