public enum DockerImageType extends Enum<DockerImageType>
| Enum Constant and Description |
|---|
NONE |
PRIVATE_DOCKER_HUB |
PRIVATE_REGISTRY |
PUBLIC_DOCKER_HUB |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DockerImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockerImageType NONE
public static final DockerImageType PUBLIC_DOCKER_HUB
public static final DockerImageType PRIVATE_DOCKER_HUB
public static final DockerImageType PRIVATE_REGISTRY
public static final DockerImageType UNKNOWN
public static DockerImageType[] values()
for (DockerImageType c : DockerImageType.values()) System.out.println(c);
public static DockerImageType 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 © 2020. All rights reserved.