{
return new DataValue[] {new DoubleData((Double)object)};
}
else if (object instanceof Float)
{
return new DataValue[] {new FloatData((Float)object)};
}
else if (object instanceof Boolean)
{
return new DataValue[] {new BooleanData((Boolean)object)};
}