Enum Class ReportLevel

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

public enum ReportLevel extends Enum<ReportLevel>
The possible levels for reporting events to the OpenText Functional Testing for Developers Report.
  • Enum Constant Details

    • All

      public static final ReportLevel All
      Report events from all levels.
    • Warning

      public static final ReportLevel Warning
      Report only events with the status Warning or Error.
    • Error

      public static final ReportLevel Error
      Report only events with the status Error.
    • Off

      public static final ReportLevel Off
      Disable all report levels. A report is not created.
  • Method Details

    • values

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