@StableMinor(version="12.4", sinceVersion="7.1") public enum PackageOutcome extends Enum<PackageOutcome>
Enum Constant and Description |
---|
FAILURE
Indicates the package has one or more steps with failure.
|
SUCCESS
Indicates the package is being deployed.
|
WARNING
Indicates the package has one or more steps ignored.
|
Modifier and Type | Method and Description |
---|---|
static PackageOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackageOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageOutcome SUCCESS
public static final PackageOutcome FAILURE
public static final PackageOutcome WARNING
public static PackageOutcome[] values()
for (PackageOutcome c : PackageOutcome.values()) System.out.println(c);
public static PackageOutcome 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 nullLumisXP 12.4.0.200625 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.