Enum CheckComplexity

    • 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 name
        NullPointerException - if the argument is null