public enum DockerFileOption extends Enum<DockerFileOption>
Enum Constant and Description |
---|
HEALTHCHECK_INTERVAL |
HEALTHCHECK_RETRIES |
HEALTHCHECK_TIMEOUT |
Modifier and Type | Method and Description |
---|---|
void |
addTo(StringBuilder sb,
Object value)
Appends the option with the giv
|
String |
getKey() |
static DockerFileOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerFileOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockerFileOption HEALTHCHECK_INTERVAL
public static final DockerFileOption HEALTHCHECK_TIMEOUT
public static final DockerFileOption HEALTHCHECK_RETRIES
public static DockerFileOption[] values()
for (DockerFileOption c : DockerFileOption.values()) System.out.println(c);
public static DockerFileOption 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 getKey()
public void addTo(StringBuilder sb, Object value)
Copyright © 2019. All rights reserved.