public class ReplySet
extends java.lang.Object
Constructor and Description |
---|
ReplySet(java.lang.Object thisObjValue)
Create a new instance of ReplySet.
|
ReplySet(java.lang.String thisValueType,
java.lang.Object thisObjValue)
Create a new instance of ReplySet.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getValue()
Get the object value.
|
java.lang.String |
getValueType()
Get the type of the object value.
|
static ReplySet |
toSet(java.lang.Object reply)
Create a
ReplySet object to wrap the reply in and return. |
java.lang.String |
toString()
Return a string-based description of the dataset.
|
public ReplySet(java.lang.Object thisObjValue)
thisObjValue
- the value and should not null. The value type is set to
the object class-name.public ReplySet(java.lang.String thisValueType, java.lang.Object thisObjValue)
thisValueType
- the type of value that is stored, in case not using the class-name.thisObjValue
- the value and should probably be not null.public java.lang.String getValueType()
public java.lang.Object getValue()
public java.lang.String toString()
toString
in class java.lang.Object
public static ReplySet toSet(java.lang.Object reply)
ReplySet
object to wrap the reply in and return.reply
- the reply to return.