Package | Description |
---|---|
com.orchestranetworks.addon.dqid |
Provides classes and interfaces to define, publish and execute indicators.
|
Modifier and Type | Method and Description |
---|---|
Set<PredefinedValue> |
ParameterDefinition.getDefaultPredefinedValues()
Returns an empty list if
ParameterDefinition.isList() returns false . |
Set<PredefinedValue> |
ListConstraint.getDefaultPredefinedValues()
Returns the list of the predefined default values.
|
Set<PredefinedValue> |
ListConstraint.getPossibleValues()
Returns the list of possible values in case of enumeration.
|
Constructor and Description |
---|
ListConstraint(int minOccurs,
int maxOccurs,
Set<PredefinedValue> defaultValues)
Initializes in the case the parameter is a list.
|
ListConstraint(int minOccurs,
int maxOccurs,
Set<PredefinedValue> possibleValues,
Set<PredefinedValue> defaultValues)
Initializes in the case the parameter is an enumeration type and is multiple-occurrenced.
|
ListConstraint(int minOccurs,
int maxOccurs,
Set<PredefinedValue> possibleValues,
Set<PredefinedValue> defaultValues)
Initializes in the case the parameter is an enumeration type and is multiple-occurrenced.
|
ListConstraint(Set<PredefinedValue> possibleValues,
Set<PredefinedValue> defaultValues)
Initializes in the case the parameter is an enumeration type.
|
ListConstraint(Set<PredefinedValue> possibleValues,
Set<PredefinedValue> defaultValues)
Initializes in the case the parameter is an enumeration type.
|