* @return the current time
*/
public static TimeIndex now(TimeDomain domain) {
try {
TimeIndex t = new SystemTime();
return t.convert(domain, Adjustment.DOWN);
} catch (T2Exception e) {
// should not occur because of the adjustment
throw new RuntimeException(e);
}
}