Enum Class CheckComplexity

java.lang.Object
java.lang.Enum<CheckComplexity>
com.e1c.g5.v8.dt.check.CheckComplexity
All Implemented Interfaces:
Serializable, Comparable<CheckComplexity>, Constable

public enum CheckComplexity extends Enum<CheckComplexity>
Check complexity designator. Defines the order and operativeness of the check's performing by the ACC scheduler
  • Enum Constant Details

    • NORMAL

      public static final CheckComplexity NORMAL
      The normal complexity check. Consumes a limited amount of resources and may be performed fast, allowing the user to receive check results earlier
    • COMPLEX

      public static final CheckComplexity COMPLEX
      The complex check. Consumes a lot of resources/requires a lot of time to perform. In order to not hinder other less demanding checks, all complex checks are performed after all normal ones
  • Method Details

    • values

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