gpt4 book ai didi

org.jooq.types.YearToMonth.valueOf()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-19 04:43:31 26 4
gpt4 key购买 nike

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

YearToMonth.valueOf介绍

[英]Parse a string representation of a INTERVAL YEAR TO MONTH
[中]解析INTERVAL YEAR TO MONTH的字符串表示形式

代码示例

代码示例来源:origin: org.jooq/jooq

@Override
final YearToMonth get0(BindingGetSQLInputContext<U> ctx) throws SQLException {
  String string = ctx.input().readString();
  return string == null ? null : YearToMonth.valueOf(string);
}

代码示例来源:origin: org.jooq/jooq

private static final Interval parseIntervalLiteral(ParserContext ctx) {
  String string = parseStringLiteral(ctx);
  DayToSecond ds = DayToSecond.valueOf(string);
  if (ds != null)
    return ds;
  YearToMonth ym = YearToMonth.valueOf(string);
  if (ym != null)
    return ym;
  throw ctx.exception("Illegal interval literal");
}

代码示例来源:origin: org.jooq/jooq

@Override
final YearToMonth get0(BindingGetStatementContext<U> ctx) throws SQLException {
  if (ctx.family() == POSTGRES) {
    Object object = ctx.statement().getObject(ctx.index());
    return object == null ? null : PostgresUtils.toYearToMonth(object);
  }
  else {
    String string = ctx.statement().getString(ctx.index());
    return string == null ? null : YearToMonth.valueOf(string);
  }
}

代码示例来源:origin: org.jooq/jooq

@Override
final YearToMonth get0(BindingGetResultSetContext<U> ctx) throws SQLException {
  if (ctx.family() == POSTGRES) {
    Object object = ctx.resultSet().getObject(ctx.index());
    return object == null ? null : PostgresUtils.toYearToMonth(object);
  }
  else {
    String string = ctx.resultSet().getString(ctx.index());
    return string == null ? null : YearToMonth.valueOf(string);
  }
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

return (T) (string == null ? null : YearToMonth.valueOf(string));

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

return (T) (string == null ? null : YearToMonth.valueOf(string));

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

return (T) (string == null ? null : YearToMonth.valueOf(string));

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com