Enum Class LinterStatus

java.lang.Object
java.lang.Enum<LinterStatus>
de.firemage.autograder.core.LinterStatus
All Implemented Interfaces:
Serializable, Comparable<LinterStatus>, Constable

public enum LinterStatus extends Enum<LinterStatus>
  • Enum Constant Details

    • COMPILING

      public static final LinterStatus COMPILING
    • RUNNING_SPOTBUGS

      public static final LinterStatus RUNNING_SPOTBUGS
    • RUNNING_PMD

      public static final LinterStatus RUNNING_PMD
    • RUNNING_CPD

      public static final LinterStatus RUNNING_CPD
    • RUNNING_ERROR_PRONE

      public static final LinterStatus RUNNING_ERROR_PRONE
    • BUILDING_CODE_MODEL

      public static final LinterStatus BUILDING_CODE_MODEL
    • BUILDING_DOCKER_IMAGE

      public static final LinterStatus BUILDING_DOCKER_IMAGE
    • EXECUTING_TESTS

      public static final LinterStatus EXECUTING_TESTS
    • RUNNING_INTEGRATED_CHECKS

      public static final LinterStatus RUNNING_INTEGRATED_CHECKS
  • Method Details

    • values

      public static LinterStatus[] 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 LinterStatus 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
    • getMessage

      public LocalizedMessage getMessage()