public enum FrameScheduledNavigationReason extends Enum<FrameScheduledNavigationReason>
| Enum Constant and Description |
|---|
FORM_SUBMISSION_GET |
FORM_SUBMISSION_POST |
HTTP_HEADER_REFRESH |
META_TAG_REFRESH |
PAGE_BLOCK_INTERSTITIAL |
RELOAD |
SCRIPT_INITIATED |
| Modifier and Type | Method and Description |
|---|---|
static FrameScheduledNavigationReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameScheduledNavigationReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameScheduledNavigationReason FORM_SUBMISSION_GET
public static final FrameScheduledNavigationReason FORM_SUBMISSION_POST
public static final FrameScheduledNavigationReason HTTP_HEADER_REFRESH
public static final FrameScheduledNavigationReason SCRIPT_INITIATED
public static final FrameScheduledNavigationReason META_TAG_REFRESH
public static final FrameScheduledNavigationReason PAGE_BLOCK_INTERSTITIAL
public static final FrameScheduledNavigationReason RELOAD
public static FrameScheduledNavigationReason[] values()
for (FrameScheduledNavigationReason c : FrameScheduledNavigationReason.values()) System.out.println(c);
public static FrameScheduledNavigationReason 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 © 2020. All rights reserved.