mavis
Enum Project.Type

java.lang.Object
  extended by java.lang.Enum<Project.Type>
      extended by mavis.Project.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Project.Type>
Enclosing class:
Project

public static enum Project.Type
extends java.lang.Enum<Project.Type>

The type of the project.


Enum Constant Summary
AF
           
CALIBRATION
           
GAF
           
THELLIER
           
THERMAL
           
 
Field Summary
private  java.lang.String name
           
 
Method Summary
 java.lang.String toString()
           
static Project.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Project.Type[] 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, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CALIBRATION

public static final Project.Type CALIBRATION

AF

public static final Project.Type AF

GAF

public static final Project.Type GAF

THELLIER

public static final Project.Type THELLIER

THERMAL

public static final Project.Type THERMAL
Field Detail

name

private java.lang.String name
Method Detail

values

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

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

valueOf

public static Project.Type 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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<Project.Type>