public static enum BookmarkEvent.ID extends Enum<BookmarkEvent.ID>
Enum Constant and Description |
---|
BOOKMARK_ADDED
An identifier used for such events that get fired when a bookmark was
added to a bookmark model.
|
BOOKMARK_REMOVED
An identifier used for such events that get fired when a bookmark was
removed from a bookmark model.
|
Modifier and Type | Method and Description |
---|---|
static BookmarkEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookmarkEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookmarkEvent.ID BOOKMARK_ADDED
public static final BookmarkEvent.ID BOOKMARK_REMOVED
public static BookmarkEvent.ID[] values()
for (BookmarkEvent.ID c : BookmarkEvent.ID.values()) System.out.println(c);
public static BookmarkEvent.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.