Enum Class Repository

java.lang.Object
java.lang.Enum<Repository>
io.github.jcohy.gradle.version.Repository
All Implemented Interfaces:
Serializable, Comparable<Repository>, Constable

public enum Repository extends Enum<Repository>
Copyright: Copyright (c) 2021 jcohy.com

Description: 项目构件发布的仓库地址

Since:
0.0.5.1
  • Enum Constant Details

    • SNAPSHOT

      public static final Repository SNAPSHOT
      快照版本对应的仓库.
    • MILESTONE

      public static final Repository MILESTONE
      预发布版本对应的仓库.
    • RELEASE

      public static final Repository RELEASE
      发布版本对应的仓库.
  • Method Details

    • values

      public static Repository[] 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 Repository 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
    • of

      public static Repository of(ReleaseStatus status)
      根据 ReleaseStatus 获取仓库地址
      Parameters:
      status - the release status
      Returns:
      the artifact repository
    • getId

      public String getId()
    • getName

      public String getName()
    • getUrl

      public String getUrl()
    • isSnapshotsEnabled

      public boolean isSnapshotsEnabled()