Enum CLCommandQueuePool.FinishAction
- java.lang.Object
-
- java.lang.Enum<CLCommandQueuePool.FinishAction>
-
- 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
Enum Constants Enum Constant Description DO_NOTHING
Does nothing, the task is responsible to make sure all computations have finished when the task finishesFINISH
Finishes the queue on task completion.FLUSH
Flushes the queue on task completion.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-