Enum Class CollisionOption

java.lang.Object
java.lang.Enum<CollisionOption>
com.flir.thermalsdk.live.importing.CollisionOption
All Implemented Interfaces:
Serializable, Comparable<CollisionOption>, Constable

public enum CollisionOption extends Enum<CollisionOption>
Defines a behaviour when importing to a local path, where a file already exists.
  • Enum Constant Details

    • OVERWRITE

      public static final CollisionOption OVERWRITE
      Always download and override an existing file.
    • SKIP

      public static final CollisionOption SKIP
      Skip download if the file name is already present locally.
  • Method Details

    • values

      public static CollisionOption[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CollisionOption valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null