com.dlsc.flexgantt.swing
Enum PagingControlType

java.lang.Object
  extended by java.lang.Enum<PagingControlType>
      extended by com.dlsc.flexgantt.swing.PagingControlType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PagingControlType>

public enum PagingControlType
extends java.lang.Enum<PagingControlType>

An enumeration of possible paging operations.

Since:
1.0

Enum Constant Summary
BEGINNING
          Used for the 'page to the beginning' button.
CUSTOM
          Used for the 'set a custom time span' button.
EARLIER
          Used for the 'page to earlier time span' button.
END
          Used for the 'page to the end' button.
LATER
          Used for the 'page to later time span' button.
 
Method Summary
static PagingControlType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PagingControlType[] 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

BEGINNING

public static final PagingControlType BEGINNING
Used for the 'page to the beginning' button.

Since:
1.0

EARLIER

public static final PagingControlType EARLIER
Used for the 'page to earlier time span' button.

Since:
1.0

CUSTOM

public static final PagingControlType CUSTOM
Used for the 'set a custom time span' button.

Since:
1.0

LATER

public static final PagingControlType LATER
Used for the 'page to later time span' button.

Since:
1.0

END

public static final PagingControlType END
Used for the 'page to the end' button.

Since:
1.0
Method Detail

values

public static final PagingControlType[] 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(PagingControlType c : PagingControlType.values())
        System.out.println(c);

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

valueOf

public static PagingControlType 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