Package com.uc4.api.objects
Enum PromptSetDefinition.PromptElementTable
- java.lang.Object
-
- java.lang.Enum<PromptSetDefinition.PromptElementTable>
-
- com.uc4.api.objects.PromptSetDefinition.PromptElementTable
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PromptSetDefinition.PromptElementTable>
- Enclosing class:
- PromptSetDefinition
public static enum PromptSetDefinition.PromptElementTable extends java.lang.Enum<PromptSetDefinition.PromptElementTable>
Enum for all the various tables where prompt values can be stored
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AJPPVStatistical Table: Prompted values of aleady run workflow tasksAJPVAStatistical Table: Prompted array values of aleady run workflow tasksAPUDStatistical Table: Prompted values of aleady run tasksAPUDAStatistical Table: Prompted array values of aleady run tasksEJPPVPrompted values of running workflow tasksEJPVAPrompted array values of running workflow tasksEPUDPrompt Execution: Prompted values of running tasksEPUDAPrompt Execution: Prompted array values of running tasksJPPVJOBP Workflow Task ObjectJPVAFor Multiple Values: JOBP Workflow Task ObjectOPSEPRPT Prompt Set Element Table.OPSEAFor Multiple Values: PRPT Prompt Set Element Table.OPUDJOBS Job Object.OPUDAFor Multiple Values: JOBS Job Object.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PromptSetDefinition.PromptElementTablevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PromptSetDefinition.PromptElementTable[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPSE
public static final PromptSetDefinition.PromptElementTable OPSE
PRPT Prompt Set Element Table. Contains the default value specified in the Prompt Set Object
-
OPSEA
public static final PromptSetDefinition.PromptElementTable OPSEA
For Multiple Values: PRPT Prompt Set Element Table. Contains the default value specified in the Prompt Set Object
-
OPUD
public static final PromptSetDefinition.PromptElementTable OPUD
JOBS Job Object. Contains values differing from OPSE (overridden in the JOB Object)
-
OPUDA
public static final PromptSetDefinition.PromptElementTable OPUDA
For Multiple Values: JOBS Job Object. Contains values differing from OPSE (overridden in the JOB Object)
-
JPPV
public static final PromptSetDefinition.PromptElementTable JPPV
JOBP Workflow Task Object
-
JPVA
public static final PromptSetDefinition.PromptElementTable JPVA
For Multiple Values: JOBP Workflow Task Object
-
EPUD
public static final PromptSetDefinition.PromptElementTable EPUD
Prompt Execution: Prompted values of running tasks
-
EPUDA
public static final PromptSetDefinition.PromptElementTable EPUDA
Prompt Execution: Prompted array values of running tasks
-
EJPPV
public static final PromptSetDefinition.PromptElementTable EJPPV
Prompted values of running workflow tasks
-
EJPVA
public static final PromptSetDefinition.PromptElementTable EJPVA
Prompted array values of running workflow tasks
-
APUD
public static final PromptSetDefinition.PromptElementTable APUD
Statistical Table: Prompted values of aleady run tasks
-
APUDA
public static final PromptSetDefinition.PromptElementTable APUDA
Statistical Table: Prompted array values of aleady run tasks
-
AJPPV
public static final PromptSetDefinition.PromptElementTable AJPPV
Statistical Table: Prompted values of aleady run workflow tasks
-
AJPVA
public static final PromptSetDefinition.PromptElementTable AJPVA
Statistical Table: Prompted array values of aleady run workflow tasks
-
-
Method Detail
-
values
public static PromptSetDefinition.PromptElementTable[] 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 (PromptSetDefinition.PromptElementTable c : PromptSetDefinition.PromptElementTable.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PromptSetDefinition.PromptElementTable valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-