public enum DeploySourceOrigin extends Enum<DeploySourceOrigin>
Enum Constant and Description |
---|
RUN
The archived artifacts of a build.
|
WORKSPACE
The workspace of the currently executing build.
|
Modifier and Type | Method and Description |
---|---|
static Set<DeploySourceOrigin> |
all()
|
static List<DeploySourceOrigin> |
allInPreferenceOrder()
|
static DeploySourceOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploySourceOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploySourceOrigin WORKSPACE
public static final DeploySourceOrigin RUN
public static DeploySourceOrigin[] values()
for (DeploySourceOrigin c : DeploySourceOrigin.values()) System.out.println(c);
public static DeploySourceOrigin 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 null@NonNull public static Set<DeploySourceOrigin> all()
@NonNull public static List<DeploySourceOrigin> allInPreferenceOrder()
values()
as an immutable List
with highest
preference
first.Copyright © 2016–2022. All rights reserved.