groovy.2-calendars.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
///////////////////// Calendars /////////////////////
import static io.deephaven.time.calendar.Calendars.calendar
import static io.deephaven.time.calendar.Calendars.calendarNames
//todo prefix name with CALENDAR?
publishVariable( "CALENDAR_DEFAULT", calendar())
for( String n : calendarNames() ) {
publishVariable("CALENDAR_" + n, calendar(n))
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy