de.grogra.gpuflux.tracer
Enum FluxLightModelTracer.MeasureMode

java.lang.Object
  extended by java.lang.Enum<FluxLightModelTracer.MeasureMode>
      extended by de.grogra.gpuflux.tracer.FluxLightModelTracer.MeasureMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FluxLightModelTracer.MeasureMode>
Enclosing class:
FluxLightModelTracer

public static enum FluxLightModelTracer.MeasureMode
extends java.lang.Enum<FluxLightModelTracer.MeasureMode>


Enum Constant Summary
FULL_SPECTRUM
           
INTEGRATED_SPECTRUM
           
RGB
           
 
Method Summary
static FluxLightModelTracer.MeasureMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FluxLightModelTracer.MeasureMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FULL_SPECTRUM

public static final FluxLightModelTracer.MeasureMode FULL_SPECTRUM

INTEGRATED_SPECTRUM

public static final FluxLightModelTracer.MeasureMode INTEGRATED_SPECTRUM

RGB

public static final FluxLightModelTracer.MeasureMode RGB
Method Detail

valueOf

public static FluxLightModelTracer.MeasureMode 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
java.lang.NullPointerException - if the argument is null

values

public static FluxLightModelTracer.MeasureMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FluxLightModelTracer.MeasureMode c : FluxLightModelTracer.MeasureMode.values())
    System.out.println(c);

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