com.jogamp.opencl
Enum CLDevice.GlobalMemCacheType

java.lang.Object
  extended by java.lang.Enum<CLDevice.GlobalMemCacheType>
      extended by com.jogamp.opencl.CLDevice.GlobalMemCacheType
All Implemented Interfaces:
Serializable, Comparable<CLDevice.GlobalMemCacheType>
Enclosing class:
CLDevice

public static enum CLDevice.GlobalMemCacheType
extends Enum<CLDevice.GlobalMemCacheType>

Type of global memory cache supported.


Enum Constant Summary
NONE
          Global memory cache not supported.
READ_ONLY
          Read only cache.
READ_WRITE
          Read-write cache.
 
Field Summary
 int TYPE
          Value of wrapped OpenCL value.
 
Method Summary
static CLDevice.GlobalMemCacheType valueOf(int bitfield)
          Returns the matching GlobalMemCacheType for the given cl type.
static CLDevice.GlobalMemCacheType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CLDevice.GlobalMemCacheType[] 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

NONE

public static final CLDevice.GlobalMemCacheType NONE
Global memory cache not supported.


READ_ONLY

public static final CLDevice.GlobalMemCacheType READ_ONLY
Read only cache.


READ_WRITE

public static final CLDevice.GlobalMemCacheType READ_WRITE
Read-write cache.

Field Detail

TYPE

public final int TYPE
Value of wrapped OpenCL value.

Method Detail

values

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

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

valueOf

public static CLDevice.GlobalMemCacheType 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

valueOf

public static CLDevice.GlobalMemCacheType valueOf(int bitfield)
Returns the matching GlobalMemCacheType for the given cl type.