public static enum TaskParameters.SourceType extends java.lang.Enum<TaskParameters.SourceType>
Enum Constant and Description |
---|
MODEL_OBJECT
A view in another model in the same workspace.
|
SALESFORCE_API
A SOQL query to be run on a Salesforce.com instance.
|
UPLOADED_FILE
A file uploaded, initially through the browser, to the server.
|
Modifier and Type | Method and Description |
---|---|
static TaskParameters.SourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskParameters.SourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskParameters.SourceType UPLOADED_FILE
public static final TaskParameters.SourceType MODEL_OBJECT
public static final TaskParameters.SourceType SALESFORCE_API
public static TaskParameters.SourceType[] values()
for (TaskParameters.SourceType c : TaskParameters.SourceType.values()) System.out.println(c);
public static TaskParameters.SourceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null