本文整理了Java中org.apache.kylin.common.util.DateFormat.isSupportedDateFormat()
方法的一些代码示例,展示了DateFormat.isSupportedDateFormat()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DateFormat.isSupportedDateFormat()
方法的具体详情如下:
包路径:org.apache.kylin.common.util.DateFormat
类名称:DateFormat
方法名:isSupportedDateFormat
暂无
代码示例来源:origin: apache/kylin
@Test
public void testIsSupportedDateFormat() {
assertTrue(DateFormat.isSupportedDateFormat("2010-01-01"));
assertTrue(DateFormat.isSupportedDateFormat("20100101"));
assertTrue(DateFormat.isSupportedDateFormat("2010-01-01 01:01:01"));
assertTrue(DateFormat.isSupportedDateFormat("2010-01-01 01:00:00.000"));
assertFalse(DateFormat.isSupportedDateFormat("2010-01"));
assertFalse(DateFormat.isSupportedDateFormat("2010/01/01"));
assertFalse(DateFormat.isSupportedDateFormat("2010-1-1"));
assertFalse(DateFormat.isSupportedDateFormat("abc"));
}
}
代码示例来源:origin: apache/kylin
private String formatTime(String dateStr, DataType dataType) {
if (dataType.isDatetime() || dataType.isTime()) {
throw new RuntimeException("Datetime and time type are not supported yet");
}
if (DateFormat.isSupportedDateFormat(dateStr)) {
return dateStr;
}
long millis = Long.parseLong(dateStr);
if (dataType.isTimestamp()) {
return DateFormat.formatToTimeStr(millis);
} else if (dataType.isDate()) {
return DateFormat.formatToDateStr(millis);
} else {
throw new RuntimeException("Unknown type " + dataType + " to formatTime");
}
}
}
代码示例来源:origin: org.apache.kylin/kylin-core-metadata
private String formatTime(String dateStr, DataType dataType) {
if (dataType.isDatetime() || dataType.isTime()) {
throw new RuntimeException("Datetime and time type are not supported yet");
}
if (DateFormat.isSupportedDateFormat(dateStr)) {
return dateStr;
}
long millis = Long.parseLong(dateStr);
if (dataType.isTimestamp()) {
return DateFormat.formatToTimeStr(millis);
} else if (dataType.isDate()) {
return DateFormat.formatToDateStr(millis);
} else {
throw new RuntimeException("Unknown type " + dataType + " to formatTime");
}
}
}
内容来源于网络,如有侵权,请联系作者删除!