@Deprecated public class Parameter<T> extends java.lang.Object
This is the base class for input/output and output parameters.
Constructor and Description |
---|
Parameter()
Deprecated.
Creates an empty Parameter.
|
Parameter(T value)
Deprecated.
Creates a Parameter containing a value.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
getBooleanValue()
Deprecated.
Returns the boolean value of this Parameter.
|
protected byte |
getByteValue()
Deprecated.
Returns the byte value of this Parameter.
|
protected char |
getCharValue()
Deprecated.
Returns the char value of this Parameter.
|
protected double |
getDoubleValue()
Deprecated.
Returns the double value of this Parameter.
|
protected float |
getFloatValue()
Deprecated.
Returns the float value of this Parameter.
|
protected int |
getIntValue()
Deprecated.
Returns the int value of this Parameter.
|
protected long |
getLongValue()
Deprecated.
Returns the long value of this Parameter.
|
protected java.lang.Object |
getObjectValue()
Deprecated.
Returns an object containing the value of this Parameter.
|
protected short |
getShortValue()
Deprecated.
Returns the short value of this Parameter.
|
T |
getValue()
Deprecated.
Returns the value of this Parameter.
|
protected void |
setBooleanValue(boolean value)
Deprecated.
Sets the value of this Parameter to
the passed in boolean.
|
protected void |
setByteValue(byte value)
Deprecated.
Sets the value of this Parameter to the passed in byte.
|
protected void |
setCharValue(char value)
Deprecated.
Sets the value of this Parameter to the passed in char.
|
protected void |
setDoubleValue(double value)
Deprecated.
Set the value of this Parameter to the passed in double.
|
protected void |
setFloatValue(float value)
Deprecated.
Sets the value of this Parameter to the passed in float.
|
protected void |
setIntValue(int value)
Deprecated.
Sets the value of this Parameter to the passed in int.
|
protected void |
setLongValue(long value)
Deprecated.
Sets the value of this Parameter to the passed in long.
|
protected void |
setObjectValue(java.lang.Object value)
Deprecated.
Sets the value of this Parameter to the passed in String.
|
protected void |
setShortValue(short value)
Deprecated.
Sets the value of this Parameter to the passed in short.
|
void |
setValue(T value)
Deprecated.
Sets the value of this Parameter.
|
java.lang.String |
toString()
Deprecated.
Returns a String object representing this Parameter's value.
|
public Parameter()
public T getValue()
public void setValue(T value)
value
- Parameter value to set.public java.lang.String toString()
toString
in class java.lang.Object
protected boolean getBooleanValue()
protected void setBooleanValue(boolean value)
value
- boolean value.protected byte getByteValue()
protected void setByteValue(byte value)
value
- byte value.protected char getCharValue()
protected void setCharValue(char value)
value
- char value.protected short getShortValue()
protected void setShortValue(short value)
value
- short value.protected int getIntValue()
protected void setIntValue(int value)
value
- int value.protected long getLongValue()
protected void setLongValue(long value)
value
- long value.protected float getFloatValue()
protected void setFloatValue(float value)
value
- float value.protected double getDoubleValue()
protected void setDoubleValue(double value)
value
- double value.protected java.lang.Object getObjectValue()
protected void setObjectValue(java.lang.Object value)
value
- String value.