public class DisplayParameter
extends java.lang.Object
DisplayParameter
.Modifier and Type | Field and Description |
---|---|
private java.lang.String |
defaultValue
The default value for this parameter as
String . |
private java.lang.String |
display
The text which shall be displayed to the user as name as
String . |
private FieldType |
fieldType
The
FieldType which describes how the user may manipulate the value of this parameter. |
private java.lang.String |
name
The parameters name as
String . |
Constructor and Description |
---|
DisplayParameter(java.lang.String nameIn,
java.lang.String displayIn,
FieldType fieldTypeIn,
java.lang.String defaultValueIn)
Initializes a new
DisplayParameter object. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDefaultValue()
Returns the parameters default value as
String . |
java.lang.String |
getDisplay()
Returns the parameters display name as
String . |
FieldType |
getFieldType()
Returns the parameters field type as
FieldType . |
java.lang.String |
getName()
Returns the parameters name as
String . |
private java.lang.String name
String
.private java.lang.String display
String
.private FieldType fieldType
FieldType
which describes how the user may manipulate the value of this parameter.private java.lang.String defaultValue
String
.public DisplayParameter(java.lang.String nameIn, java.lang.String displayIn, FieldType fieldTypeIn, java.lang.String defaultValueIn)
DisplayParameter
object.nameIn
- The parameters name as String
.displayIn
- The text that shall be displayed to the user as parameters name as String
.fieldTypeIn
- The FieldType
which describes how the user may manipulate the value of this
parameter.defaultValueIn
- The default value of this parameter as String
.public final java.lang.String getName()
String
.String
.public final java.lang.String getDisplay()
String
.String
.public final FieldType getFieldType()
FieldType
.FieldType
.public final java.lang.String getDefaultValue()
String
.String
.