edu.stanford.rsl.konrad.cuda
Enum CUDAFFTVolumeHandle.CUFFTResult

java.lang.Object
  extended by java.lang.Enum<CUDAFFTVolumeHandle.CUFFTResult>
      extended by edu.stanford.rsl.konrad.cuda.CUDAFFTVolumeHandle.CUFFTResult
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CUDAFFTVolumeHandle.CUFFTResult>
Enclosing class:
CUDAFFTVolumeHandle

public static enum CUDAFFTVolumeHandle.CUFFTResult
extends java.lang.Enum<CUDAFFTVolumeHandle.CUFFTResult>


Enum Constant Summary
CUFFT_ALLOC_FAILED
           
CUFFT_EXEC_FAILED
           
CUFFT_INTERNAL_ERROR
           
CUFFT_INVALID_PLAN
           
CUFFT_INVALID_SIZE
           
CUFFT_INVALID_TYPE
           
CUFFT_INVALID_VALUE
           
CUFFT_SETUP_FAILED
           
CUFFT_SUCCESS
           
 
Method Summary
static CUDAFFTVolumeHandle.CUFFTResult valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CUDAFFTVolumeHandle.CUFFTResult[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUFFT_SUCCESS

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_SUCCESS

CUFFT_INVALID_PLAN

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_INVALID_PLAN

CUFFT_ALLOC_FAILED

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_ALLOC_FAILED

CUFFT_INVALID_TYPE

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_INVALID_TYPE

CUFFT_INVALID_VALUE

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_INVALID_VALUE

CUFFT_INTERNAL_ERROR

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_INTERNAL_ERROR

CUFFT_EXEC_FAILED

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_EXEC_FAILED

CUFFT_SETUP_FAILED

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_SETUP_FAILED

CUFFT_INVALID_SIZE

public static final CUDAFFTVolumeHandle.CUFFTResult CUFFT_INVALID_SIZE
Method Detail

values

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

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

valueOf

public static CUDAFFTVolumeHandle.CUFFTResult 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