*/
private DateTimeValue parseDateTime(String val) throws ParseException {
Date date = ((SimpleDateFormat) uFormat).parse(val);
GregorianCalendar gc = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
gc.setTime(date);
return new DateTimeValue(gc);
}