Enum Class CaptureLevel

java.lang.Object
java.lang.Enum<CaptureLevel>
com.hp.lft.report.CaptureLevel
All Implemented Interfaces:
Serializable, Comparable<CaptureLevel>, java.lang.constant.Constable

public enum CaptureLevel extends Enum<CaptureLevel>
The possible levels for capturing snapshots for the report.
  • Enum Constant Details

    • All

      public static final CaptureLevel All
      Snapshots are captured for all test object operations.
    • OnError

      public static final CaptureLevel OnError
      Snapshots are captured only for test object operations with errors.
    • Off

      public static final CaptureLevel Off
      Snapshots are not captured.
  • Method Details

    • values

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