public enum DockerBuildStrategy extends Enum<DockerBuildStrategy>
| Enum Constant and Description |
|---|
DEFAULT
Default docker build strategy.
|
LAMBDA
An AWS Lambda.
|
ORACLE_FUNCTION
An oracle function.
|
| Modifier and Type | Method and Description |
|---|---|
static DockerBuildStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerBuildStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockerBuildStrategy ORACLE_FUNCTION
public static final DockerBuildStrategy LAMBDA
public static final DockerBuildStrategy DEFAULT
public static DockerBuildStrategy[] values()
for (DockerBuildStrategy c : DockerBuildStrategy.values()) System.out.println(c);
public static DockerBuildStrategy 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–2023 Micronaut. All rights reserved.