org.apache.kylin.common.util.DateFormat.isSupportedDateFormat()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(163)

本文整理了Java中org.apache.kylin.common.util.DateFormat.isSupportedDateFormat()方法的一些代码示例,展示了DateFormat.isSupportedDateFormat()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DateFormat.isSupportedDateFormat()方法的具体详情如下:
包路径:org.apache.kylin.common.util.DateFormat
类名称:DateFormat
方法名:isSupportedDateFormat

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");
    }
  }
}

相关文章