IDateTimeConfig config
Duration systemDur
boolean isDmyOrder
boolean isUnspecifiedCenturyAlwaysInPast
int epochDOW
String format
String defaultJdbcFormat
TimeZone inputTimeZone
TimeZone outputTimeZone
Locale locale
String bcPrefix
MonthMap monthMap
Map<K,V> tzMap
Support parsing of zones unlisted in TimeZone by translating to known zones. Got a zone that's not supported or should be overridden? Fix it locally by updating your custom tzMap!
// Example change CST from U.S. Central to Chinese.
class CustomTzMap {
private static Map<String, String> tzMap = DateTimeConfig.getTzMap();
static {
tzMap.put("CST", "Asia/Hong_Kong");
}
}
Map<K,V> tzCache
Copyright © 2014. All Rights Reserved.