com.jogamp.opencl.util.concurrent
Enum CLCommandQueuePool.FinishAction

java.lang.Object
  extended by java.lang.Enum<CLCommandQueuePool.FinishAction>
      extended by com.jogamp.opencl.util.concurrent.CLCommandQueuePool.FinishAction
All Implemented Interfaces:
Serializable, Comparable<CLCommandQueuePool.FinishAction>
Enclosing class:
CLCommandQueuePool<C extends CLQueueContext>

public static enum CLCommandQueuePool.FinishAction
extends Enum<CLCommandQueuePool.FinishAction>

The action executed after a task completes.


Enum Constant Summary
DO_NOTHING
          Does nothing, the task is responsible to make sure all computations have finished when the task finishes
FINISH
          Finishes the queue on task completion.
FLUSH
          Flushes the queue on task completion.
 
Method Summary
static CLCommandQueuePool.FinishAction valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CLCommandQueuePool.FinishAction[] 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

DO_NOTHING

public static final CLCommandQueuePool.FinishAction DO_NOTHING
Does nothing, the task is responsible to make sure all computations have finished when the task finishes


FLUSH

public static final CLCommandQueuePool.FinishAction FLUSH
Flushes the queue on task completion.


FINISH

public static final CLCommandQueuePool.FinishAction FINISH
Finishes the queue on task completion.

Method Detail

values

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

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

valueOf

public static CLCommandQueuePool.FinishAction 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
NullPointerException - if the argument is null