public static enum Manifest.ManifestType extends Enum<Manifest.ManifestType>
Enum Constant and Description |
---|
PUBLISHED
The manifest file is from a job that was run in the repository.
|
TEST
The manifest file is from a test job that was run in the workspace.
|
WORKSPACE
The manifest file is from a job that was run in the workspace.
|
Modifier and Type | Method and Description |
---|---|
static Manifest.ManifestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Manifest.ManifestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Manifest.ManifestType WORKSPACE
public static final Manifest.ManifestType PUBLISHED
public static final Manifest.ManifestType TEST
public static Manifest.ManifestType[] values()
for (Manifest.ManifestType c : Manifest.ManifestType.values()) System.out.println(c);
public static Manifest.ManifestType 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<i>Copyright (c) 2022, SAS Institute Inc., Cary, NC, USA</i>