public enum DockerVariables extends Enum<DockerVariables> implements PropertyVariables
| Enum Constant and Description |
|---|
DOCKER_GPG_PASSPHRASE |
DOCKER_HUB_PASSWORD |
DOCKER_IMAGE_BASE_URL |
DOCKER_IMAGE_FULL_URL |
DOCKER_SERVICE_PORT |
| Modifier and Type | Method and Description |
|---|---|
static DockerVariables |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerVariables[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetNamepublic static final DockerVariables DOCKER_GPG_PASSPHRASE
public static final DockerVariables DOCKER_SERVICE_PORT
public static final DockerVariables DOCKER_HUB_PASSWORD
public static final DockerVariables DOCKER_IMAGE_BASE_URL
public static final DockerVariables DOCKER_IMAGE_FULL_URL
public static DockerVariables[] values()
for (DockerVariables c : DockerVariables.values()) System.out.println(c);
public static DockerVariables 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 © 2022. All rights reserved.