public static enum JobSubmission.JobSubmissionType extends Enum<JobSubmission.JobSubmissionType>
Enum Constant and Description |
---|
REPOSITORY
The job was submitted from the repository.
|
WORKSPACE
The job was submitted from the current user's workspace.
|
Modifier and Type | Method and Description |
---|---|
static JobSubmission.JobSubmissionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobSubmission.JobSubmissionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobSubmission.JobSubmissionType WORKSPACE
public static final JobSubmission.JobSubmissionType REPOSITORY
public static JobSubmission.JobSubmissionType[] values()
for (JobSubmission.JobSubmissionType c : JobSubmission.JobSubmissionType.values()) System.out.println(c);
public static JobSubmission.JobSubmissionType 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) 2020, SAS Institute Inc., Cary, NC, USA</i>