Enum Class DistanceUnit

java.lang.Object
java.lang.Enum<DistanceUnit>
com.flir.thermalsdk.image.DistanceUnit
All Implemented Interfaces:
Serializable, Comparable<DistanceUnit>, Constable

public enum DistanceUnit extends Enum<DistanceUnit>
Specifies the supported distance units.
  • Enum Constant Details

    • METER

      public static final DistanceUnit METER
      The metre or meter is the fundamental unit of length in the International System of Units.
    • FEET

      public static final DistanceUnit FEET
      International foot (equal to 0.3048 meters).
  • Method Details

    • values

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