js.dev.cam.sbig
Enum DRIVER_CONTROL_PARAM

java.lang.Object
  extended by java.lang.Enum<DRIVER_CONTROL_PARAM>
      extended by js.dev.cam.sbig.DRIVER_CONTROL_PARAM
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DRIVER_CONTROL_PARAM>

public enum DRIVER_CONTROL_PARAM
extends java.lang.Enum<DRIVER_CONTROL_PARAM>


Enum Constant Summary
DCP_AUTO_AD_GAIN
           
DCP_CALL_JOURNAL_ENABLE
           
DCP_HIGH_THROUGHPUT
           
DCP_IVTOH_RATIO
           
DCP_KAI_RELGAIN
           
DCP_LAST
           
DCP_NO_HCLKS_FOR_INTEGRATION
           
DCP_TDI_MODE_ENABLE
           
DCP_USB_DRIVER
           
DCP_USB_FIFO_ENABLE
           
DCP_USB_FIFO_SIZE
           
DCP_USB_PIXEL_DL_ENABLE
           
DCP_VDD_OPTIMIZED
           
 
Method Summary
static DRIVER_CONTROL_PARAM valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DRIVER_CONTROL_PARAM[] 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

DCP_USB_FIFO_ENABLE

public static final DRIVER_CONTROL_PARAM DCP_USB_FIFO_ENABLE

DCP_CALL_JOURNAL_ENABLE

public static final DRIVER_CONTROL_PARAM DCP_CALL_JOURNAL_ENABLE

DCP_IVTOH_RATIO

public static final DRIVER_CONTROL_PARAM DCP_IVTOH_RATIO

DCP_USB_FIFO_SIZE

public static final DRIVER_CONTROL_PARAM DCP_USB_FIFO_SIZE

DCP_USB_DRIVER

public static final DRIVER_CONTROL_PARAM DCP_USB_DRIVER

DCP_KAI_RELGAIN

public static final DRIVER_CONTROL_PARAM DCP_KAI_RELGAIN

DCP_USB_PIXEL_DL_ENABLE

public static final DRIVER_CONTROL_PARAM DCP_USB_PIXEL_DL_ENABLE

DCP_HIGH_THROUGHPUT

public static final DRIVER_CONTROL_PARAM DCP_HIGH_THROUGHPUT

DCP_VDD_OPTIMIZED

public static final DRIVER_CONTROL_PARAM DCP_VDD_OPTIMIZED

DCP_AUTO_AD_GAIN

public static final DRIVER_CONTROL_PARAM DCP_AUTO_AD_GAIN

DCP_NO_HCLKS_FOR_INTEGRATION

public static final DRIVER_CONTROL_PARAM DCP_NO_HCLKS_FOR_INTEGRATION

DCP_TDI_MODE_ENABLE

public static final DRIVER_CONTROL_PARAM DCP_TDI_MODE_ENABLE

DCP_LAST

public static final DRIVER_CONTROL_PARAM DCP_LAST
Method Detail

values

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

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

valueOf

public static DRIVER_CONTROL_PARAM 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