com.sas.hls.job
Enum JobDescriptor.Tree
java.lang.Object
java.lang.Enum<JobDescriptor.Tree>
com.sas.hls.job.JobDescriptor.Tree
- All Implemented Interfaces:
- Serializable, Comparable<JobDescriptor.Tree>
- Enclosing class:
- JobDescriptor
public static enum JobDescriptor.Tree
- extends Enum<JobDescriptor.Tree>
An enumeration of where a job can be defined.
REPOSITORY
public static final JobDescriptor.Tree REPOSITORY
WORKSPACE
public static final JobDescriptor.Tree WORKSPACE
values
public static JobDescriptor.Tree[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (JobDescriptor.Tree c : JobDescriptor.Tree.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JobDescriptor.Tree valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright (c) 2013, SAS Institute Inc., Cary, NC, USA