Package de.pco.camera

Enum ExtendedRecorderType

java.lang.Object
java.lang.Enum<ExtendedRecorderType>
de.pco.camera.ExtendedRecorderType
All Implemented Interfaces:
Serializable, Comparable<ExtendedRecorderType>, java.lang.constant.Constable

public enum ExtendedRecorderType
extends Enum<ExtendedRecorderType>
Corresponds with the recorder type from pco.recorder and includes the new nonblocking sequence type.
Author:
PCO
  • Enum Constant Details

    • SEQUENCE

      public static final ExtendedRecorderType SEQUENCE
      Images will be recorded into computer memory sequentially until required image number is reached; blocks until the images are loaded
    • SEQUENCE_NON_BLOCKING

      public static final ExtendedRecorderType SEQUENCE_NON_BLOCKING
      Images will be recorded into computer memory sequentially until required image number is reached; does not block
    • RING_BUFFER

      public static final ExtendedRecorderType RING_BUFFER
      Images will be recorded into computer memory in ring buffer mode. After calling stop acquisition the latest images are in the buffers; does not block
    • FIFO

      public static final ExtendedRecorderType FIFO
      Images will be recorded into computer memory in fifo mode. If the required image number is reached, acquisition will wait until first images have been read. Here it is only possible to read out sequentially; does not block
  • Method Details

    • values

      public static ExtendedRecorderType[] 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

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