public static enum RenderSectionEvent.FetchType extends Enum<RenderSectionEvent.FetchType>
Enum Constant and Description |
---|
HEAD_FETCH
Data head fetch for more data
|
REFRESH_FETCH
Data refresh fetch
|
TAIL_FETCH
Data tail fetch for more data
|
Modifier and Type | Method and Description |
---|---|
static RenderSectionEvent.FetchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderSectionEvent.FetchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderSectionEvent.FetchType REFRESH_FETCH
public static final RenderSectionEvent.FetchType HEAD_FETCH
public static final RenderSectionEvent.FetchType TAIL_FETCH
public static RenderSectionEvent.FetchType[] values()
for (RenderSectionEvent.FetchType c : RenderSectionEvent.FetchType.values()) System.out.println(c);
public static RenderSectionEvent.FetchType 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 null