com.dlsc.flexgantt.model.bookmarks
Enum BookmarkEvent.ID

java.lang.Object
  extended by java.lang.Enum<BookmarkEvent.ID>
      extended by com.dlsc.flexgantt.model.bookmarks.BookmarkEvent.ID
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BookmarkEvent.ID>
Enclosing class:
BookmarkEvent

public static enum BookmarkEvent.ID
extends java.lang.Enum<BookmarkEvent.ID>

An enumerator with event IDs that can be used by model listeners to distinguish between different types of events that have occured inside a bookmark model.

Since:
1.0

Enum Constant Summary
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.
 
Method Summary
static BookmarkEvent.ID valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOOKMARK_ADDED

public static final BookmarkEvent.ID BOOKMARK_ADDED
An identifier used for such events that get fired when a bookmark was added to a bookmark model.

Since:
1.0

BOOKMARK_REMOVED

public static final BookmarkEvent.ID BOOKMARK_REMOVED
An identifier used for such events that get fired when a bookmark was removed from a bookmark model.

Since:
1.0
Method Detail

values

public static final BookmarkEvent.ID[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(BookmarkEvent.ID c : BookmarkEvent.ID.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static BookmarkEvent.ID valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name