ikayaki
Enum Project.Type

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

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

The type of the project.


Enum Constant Summary
AF
           
CALIBRATION
           
THELLIER
           
THERMAL
           
 
Field Summary
private  String name
           
 
Method Summary
 String toString()
           
static Project.Type valueOf(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

THELLIER

public static final Project.Type THELLIER

THERMAL

public static final Project.Type THERMAL
Field Detail

name

private 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(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:
IllegalArgumentException - if this enum type has no constant with the specified name

toString

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