Package org.azd.enums

Enum Class GitStatusState

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

public enum GitStatusState extends Enum<GitStatusState>
None
  • Enum Constant Details

    • ERROR

      public static final GitStatusState ERROR
      Status with an error.
    • FAILED

      public static final GitStatusState FAILED
      Status failed.
    • NOTAPPLICABLE

      public static final GitStatusState NOTAPPLICABLE
      Status is not applicable to the target object.
    • NOTSET

      public static final GitStatusState NOTSET
      Status state not set. Default state.
    • PENDING

      public static final GitStatusState PENDING
      Status pending.
    • SUCCEEDED

      public static final GitStatusState SUCCEEDED
      Status succeeded.
  • Method Details

    • values

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