Package de.pco.camera
Enum ConfigurationParameter
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationParameter>,java.lang.constant.Constable
public enum ConfigurationParameter extends Enum<ConfigurationParameter>
Enumerator of the most usable parameters of the camera configuration.
To be used in the map for Camera.getConfiguration and Camera.setConfiguration
methods. Variables corresponds to the values returned by particular
SDK functions.
- Author:
- PCO
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIREValue type: de.pco.sdk.enums.AcquireModeBINNINGValue type: de.pco.sdk.methodsReturnClasses.BinningEXPOSURE_TIMEExposure time will be in seconds (in spite of the SDK where it is based on the current timebase value) Value type: doubleMETADATAValue type: de.pco.sdk.enums.OnOffEnumPIXEL_RATEValue type: longROIRegion of interest Value type: de.pco.sdk.methodsReturnClasses.RoiTIMESTAMPValue type: de.pco.sdk.enums.TimestampTRIGGERValue type: de.pco.common.enums.TriggerMode -
Method Summary
Modifier and Type Method Description static ConfigurationParametervalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigurationParameter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EXPOSURE_TIME
Exposure time will be in seconds (in spite of the SDK where it is based on the current timebase value) Value type: double -
ROI
Region of interest Value type: de.pco.sdk.methodsReturnClasses.Roi -
TIMESTAMP
Value type: de.pco.sdk.enums.Timestamp -
PIXEL_RATE
Value type: long -
TRIGGER
Value type: de.pco.common.enums.TriggerMode -
ACQUIRE
Value type: de.pco.sdk.enums.AcquireMode -
METADATA
Value type: de.pco.sdk.enums.OnOffEnum -
BINNING
Value type: de.pco.sdk.methodsReturnClasses.Binning
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-