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