Parallel Colt 0.7.2

jcuda.jcublas
Enum JCublas.LogLevel

java.lang.Object
  extended by java.lang.Enum<JCublas.LogLevel>
      extended by jcuda.jcublas.JCublas.LogLevel
All Implemented Interfaces:
Serializable, Comparable<JCublas.LogLevel>
Enclosing class:
JCublas

public static enum JCublas.LogLevel
extends Enum<JCublas.LogLevel>

The log levels which may be used to control the internal logging of the JCublas library


Enum Constant Summary
LOG_DEBUG
           
LOG_DEBUGTRACE
           
LOG_ERROR
           
LOG_INFO
           
LOG_QUIET
           
LOG_TRACE
           
LOG_WARNING
           
 
Method Summary
static JCublas.LogLevel valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JCublas.LogLevel[] 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

LOG_QUIET

public static final JCublas.LogLevel LOG_QUIET

LOG_ERROR

public static final JCublas.LogLevel LOG_ERROR

LOG_WARNING

public static final JCublas.LogLevel LOG_WARNING

LOG_INFO

public static final JCublas.LogLevel LOG_INFO

LOG_DEBUG

public static final JCublas.LogLevel LOG_DEBUG

LOG_TRACE

public static final JCublas.LogLevel LOG_TRACE

LOG_DEBUGTRACE

public static final JCublas.LogLevel LOG_DEBUGTRACE
Method Detail

values

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

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

valueOf

public static JCublas.LogLevel 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

Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage