com.dlsc.flexgantt.model.paging
Enum PagingEvent.ID

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

public static enum PagingEvent.ID
extends java.lang.Enum<PagingEvent.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 paging model.

Since:
1.0

Enum Constant Summary
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.
 
Method Summary
static PagingEvent.ID valueOf(java.lang.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'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

PAGE_ADDED

public static final PagingEvent.ID PAGE_ADDED
An identifier used for such events that get fired when a page was added to a paging model.

Since:
1.0

PAGE_REMOVED

public static final PagingEvent.ID PAGE_REMOVED
An identifier used for such events that get fired when a page was removed from a paging model.

Since:
1.0

PAGE_CHANGED

public static final PagingEvent.ID PAGE_CHANGED
An identifier used for such events that get fired when the currently used page was changed.

Since:
1.0
Method Detail

values

public static final PagingEvent.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(PagingEvent.ID c : PagingEvent.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 PagingEvent.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