}
public static DateTime convertJodaTimezone(LocalDateTime date, String srcTz, String destTz) {
DateTime srcDateTime = date.toDateTime(DateTimeZone.forID(srcTz));
DateTime dstDateTime = srcDateTime.withZone(DateTimeZone.forID(destTz));
return dstDateTime.toLocalDateTime().toDateTime();
}
public static List<String> changeTz(List<String> from, final String fromTimeZone, final String toTimeZone) {
return Lists.transform(from, new Function<String, String>() {
@Override