public interface DataParameterDescriptor
Modifier and Type | Field and Description |
---|---|
static int |
CHOICE
Accepts a single value from a value set
|
static int |
RANGE
Accepts a range of values defined with a minimum and a maximum value
|
static int |
SINGLE
Accepts a single value
|
Modifier and Type | Method and Description |
---|---|
Object[] |
getAvailableValues()
Returns an array containing the available values accepted by the parameter.
|
int |
getAvailableValuesType()
Returns one of the available values type.
|
int |
getDataType()
Returns the parameter's data type.
|
Object |
getDefaultValue()
Returns the parameter's default value.
|
String |
getDescription()
Returns the parameter's description
|
Object |
getMaxValue()
Returns the maximum value when the parameter accepts a range of values.
|
Object |
getMinValue()
Returns the minimum value when the parameter accepts a range of values.
|
String |
getName()
Returns the parameter's name
|
static final int SINGLE
static final int CHOICE
static final int RANGE
String getName()
String getDescription()
int getDataType()
DataTypes
Object getDefaultValue()
int getAvailableValuesType()
Object[] getAvailableValues()
Object getMinValue()
Object getMaxValue()