net.refractions.udig.issues
Enum Column

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

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

Indicates a column in the issues view

Since:
1.1.0
Author:
Jesse

Enum Constant Summary
DESCRIPTION
          Indicates the description column
PRIORITY
          Indicates the priority column
PROBLEM_OBJECT
          Indicates the Name column
RESOLUTION
          Indicates the resolution column
 
Method Summary
static Column valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Column[] 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

PRIORITY

public static final Column PRIORITY
Indicates the priority column


RESOLUTION

public static final Column RESOLUTION
Indicates the resolution column


PROBLEM_OBJECT

public static final Column PROBLEM_OBJECT
Indicates the Name column


DESCRIPTION

public static final Column DESCRIPTION
Indicates the description column

Method Detail

values

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

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

valueOf

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