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 AJPPV
Statistical Table: Prompted values of aleady run workflow tasksAJPVA
Statistical Table: Prompted array values of aleady run workflow tasksAPUD
Statistical Table: Prompted values of aleady run tasksAPUDA
Statistical Table: Prompted array values of aleady run tasksEJPPV
Prompted values of running workflow tasksEJPVA
Prompted array values of running workflow tasksEPUD
Prompt Execution: Prompted values of running tasksEPUDA
Prompt Execution: Prompted array values of running tasksJPPV
JOBP Workflow Task ObjectJPVA
For Multiple Values: JOBP Workflow Task ObjectOPSE
PRPT Prompt Set Element Table.OPSEA
For Multiple Values: PRPT Prompt Set Element Table.OPUD
JOBS Job Object.OPUDA
For Multiple Values: JOBS Job Object.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PromptSetDefinition.PromptElementTable
valueOf(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
-
-