public static enum PagingEvent.ID extends Enum<PagingEvent.ID>
Enum Constant and Description |
---|
PAGE_ADDED
An identifier used for such events that get fired when a page was
added to a paging model.
|
PAGE_CHANGED
An identifier used for such events that get fired when the currently
used page was changed.
|
PAGE_REMOVED
An identifier used for such events that get fired when a page was
removed from a paging model.
|
Modifier and Type | Method and Description |
---|---|
static PagingEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PagingEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PagingEvent.ID PAGE_ADDED
public static final PagingEvent.ID PAGE_REMOVED
public static final PagingEvent.ID PAGE_CHANGED
public static PagingEvent.ID[] values()
for (PagingEvent.ID c : PagingEvent.ID.values()) System.out.println(c);
public static PagingEvent.ID 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.