public enum BuildParam extends Enum<BuildParam>
| Enum Constant and Description |
|---|
ENV |
IMAGE_TAG |
INCREASE_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static BuildParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildParam ENV
public static final BuildParam INCREASE_VERSION
public static final BuildParam IMAGE_TAG
public static BuildParam[] values()
for (BuildParam c : BuildParam.values()) System.out.println(c);
public static BuildParam 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.