|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CLEvent.ProfilingCommand>
com.jogamp.opencl.CLEvent.ProfilingCommand
public static enum CLEvent.ProfilingCommand
Enum Constant Summary | |
---|---|
END
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event has finished execution on the device. |
|
QUEUED
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event is enqueued in a command-queue by the host. |
|
START
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event starts execution on the device. |
|
SUBMIT
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event that has been enqueued is submitted by the host to the device associated with the commandqueue. |
Field Summary | |
---|---|
int |
COMMAND
Value of wrapped OpenCL profiling command. |
Method Summary | |
---|---|
static CLEvent.ProfilingCommand |
valueOf(int status)
|
static CLEvent.ProfilingCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CLEvent.ProfilingCommand[] |
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 |
---|
public static final CLEvent.ProfilingCommand QUEUED
public static final CLEvent.ProfilingCommand SUBMIT
public static final CLEvent.ProfilingCommand START
public static final CLEvent.ProfilingCommand END
Field Detail |
---|
public final int COMMAND
Method Detail |
---|
public static CLEvent.ProfilingCommand[] values()
for (CLEvent.ProfilingCommand c : CLEvent.ProfilingCommand.values()) System.out.println(c);
public static CLEvent.ProfilingCommand valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static CLEvent.ProfilingCommand valueOf(int status)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |