Package org.azd.enums

Enum Class BuildResult

java.lang.Object
java.lang.Enum<BuildResult>
org.azd.enums.BuildResult
All Implemented Interfaces:
Serializable, Comparable<BuildResult>, Constable

public enum BuildResult extends Enum<BuildResult>
Represents a trigger for a buld definition.
  • Enum Constant Details

    • CANCELED

      public static final BuildResult CANCELED
      The build was canceled before starting.
    • FAILED

      public static final BuildResult FAILED
      The build completed unsuccessfully.
    • NONE

      public static final BuildResult NONE
      No result
    • PARTIALLYSUCCEEDED

      public static final BuildResult PARTIALLYSUCCEEDED
      The build completed compilation successfully but had other errors.
    • SUCCEEDED

      public static final BuildResult SUCCEEDED
      The build completed successfully.
  • Method Details

    • values

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