net.refractions.udig.issues.listeners
Enum IssueChangeType

java.lang.Object
  extended by java.lang.Enum<IssueChangeType>
      extended by net.refractions.udig.issues.listeners.IssueChangeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IssueChangeType>

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

Enumerates the different types of issue changes that issuesListListener can be notified of.

Since:
1.1.0
Author:
Jesse

Enum Constant Summary
BOUNDS
          Indications the bounds of the issue has changed
DESCRIPTION
          Indications the description of the issue has changed.
OTHER
          Indicates that something else has changed, may be issue specific.
PRIORITY
          Indications the priority of the issue has changed.
RESOLUTION
          Indications the resolution of the issue has changed.
 
Method Summary
static IssueChangeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IssueChangeType[] 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

DESCRIPTION

public static final IssueChangeType DESCRIPTION
Indications the description of the issue has changed.


PRIORITY

public static final IssueChangeType PRIORITY
Indications the priority of the issue has changed.


RESOLUTION

public static final IssueChangeType RESOLUTION
Indications the resolution of the issue has changed.


BOUNDS

public static final IssueChangeType BOUNDS
Indications the bounds of the issue has changed


OTHER

public static final IssueChangeType OTHER
Indicates that something else has changed, may be issue specific.

Method Detail

values

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

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

valueOf

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