Enum Class ReleaseTaskNames

java.lang.Object
java.lang.Enum<ReleaseTaskNames>
com.robothy.platform.release.gradle.task.ReleaseTaskNames
All Implemented Interfaces:
Serializable, Comparable<ReleaseTaskNames>, Constable

public enum ReleaseTaskNames extends Enum<ReleaseTaskNames>
Task descriptions.
  • Enum Constant Details

    • RELEASE

      public static final ReleaseTaskNames RELEASE
      release task.
    • RELEASE_VERSION

      public static final ReleaseTaskNames RELEASE_VERSION
      Release version task.
    • NEXT_SNAPSHOT_VERSION

      public static final ReleaseTaskNames NEXT_SNAPSHOT_VERSION
      nextVersion task.
    • GET_GIT_WORKING_BRANCH

      public static final ReleaseTaskNames GET_GIT_WORKING_BRANCH
      getGitWorkingBranch task.
  • Method Details

    • values

      public static ReleaseTaskNames[] 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 ReleaseTaskNames 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
    • getName

      public String getName()
      Get the task name.
      Returns:
      task name.
    • getDescription

      public String getDescription()
      Get the task description.
      Returns:
      task description.