Package com.e1c.g5.v8.dt.check
Enum CheckComplexity
- java.lang.Object
-
- java.lang.Enum<CheckComplexity>
-
- com.e1c.g5.v8.dt.check.CheckComplexity
-
- All Implemented Interfaces:
Serializable
,Comparable<CheckComplexity>
public enum CheckComplexity extends Enum<CheckComplexity>
Check complexity designator. Defines the order and operativeness of the check's performing by the ACC scheduler
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CheckComplexity
valueOf(String name)
Returns the enum constant of this type with the specified name.static CheckComplexity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static CheckComplexity[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CheckComplexity c : CheckComplexity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckComplexity valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-