public enum RepoType extends Enum<RepoType>
| Enum Constant and Description |
|---|
ARTIFACTORY |
CHARTMUSEUM |
NEXUS |
| Modifier and Type | Method and Description |
|---|---|
static RepoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepoType CHARTMUSEUM
public static final RepoType ARTIFACTORY
public static final RepoType NEXUS
public static RepoType[] values()
for (RepoType c : RepoType.values()) System.out.println(c);
public static RepoType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2023 Kokuwa.io. All rights reserved.