public static enum PageState.Event extends java.lang.Enum<PageState.Event>
Enum Constant and Description |
---|
ACTION |
AJAX_RENDER |
DONE_LOADING |
RENDER |
RESOURCE |
Modifier and Type | Method and Description |
---|---|
static PageState.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageState.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageState.Event RENDER
public static final PageState.Event AJAX_RENDER
public static final PageState.Event RESOURCE
public static final PageState.Event DONE_LOADING
public static final PageState.Event ACTION
public static PageState.Event[] values()
for (PageState.Event c : PageState.Event.values()) System.out.println(c);
public static PageState.Event valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2003, 2014, Oracle and/or its affiliates. All rights reserved.