@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum UpstreamRegistry extends Enum<UpstreamRegistry>
Enum Constant and Description |
---|
AzureContainerRegistry |
DockerHub |
EcrPublic |
GithubContainerRegistry |
GitlabContainerRegistry |
K8s |
Quay |
Modifier and Type | Method and Description |
---|---|
static UpstreamRegistry |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static UpstreamRegistry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpstreamRegistry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpstreamRegistry EcrPublic
public static final UpstreamRegistry Quay
public static final UpstreamRegistry K8s
public static final UpstreamRegistry DockerHub
public static final UpstreamRegistry GithubContainerRegistry
public static final UpstreamRegistry AzureContainerRegistry
public static final UpstreamRegistry GitlabContainerRegistry
public static UpstreamRegistry[] values()
for (UpstreamRegistry c : UpstreamRegistry.values()) System.out.println(c);
public static UpstreamRegistry 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 nullpublic String toString()
toString
in class Enum<UpstreamRegistry>
public static UpstreamRegistry fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.