Package com.e1c.g5.v8.dt.check
Enum Class CheckComplexity
- All Implemented Interfaces:
Serializable
,Comparable<CheckComplexity>
,Constable
Check complexity designator. Defines the order and operativeness of the check's performing by the ACC scheduler
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic CheckComplexity
Returns the enum constant of this class with the specified name.static CheckComplexity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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 nameNullPointerException
- if the argument is null
-