Package | Description |
---|---|
com.orchestranetworks.addon.dpra.function |
Provides classes and interfaces to create custom functions.
|
Modifier and Type | Method and Description |
---|---|
static OutputDefinition |
OutputDefinition.forBoolean(String name,
com.onwbp.base.text.UserMessage label,
com.onwbp.base.text.UserMessage description)
Creates an instance of boolean output.
|
static OutputDefinition |
OutputDefinition.forDateTime(String name,
com.onwbp.base.text.UserMessage label,
com.onwbp.base.text.UserMessage description)
Creates an instance of date time output.
|
static OutputDefinition |
OutputDefinition.forDecimal(String name,
com.onwbp.base.text.UserMessage label,
com.onwbp.base.text.UserMessage description)
Creates an instance of decimal output.
|
static OutputDefinition |
OutputDefinition.forInteger(String name,
com.onwbp.base.text.UserMessage label,
com.onwbp.base.text.UserMessage description)
Creates an instance of integer output.
|
static OutputDefinition |
OutputDefinition.forString(String name,
com.onwbp.base.text.UserMessage label,
com.onwbp.base.text.UserMessage description)
Creates an instance of string output.
|
Modifier and Type | Method and Description |
---|---|
List<OutputDefinition> |
FunctionDefinition.getOutputDefinitions()
Returns the list of output definitions.
|
Modifier and Type | Method and Description |
---|---|
T |
BaseFunctionDefinitionBuilder.withOutputs(OutputDefinition... outputs)
Sets the output definitions.
|