net.fortuna.ical4j.model.Date.getFormat()方法的使用及代码示例

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

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

Date.getFormat介绍

暂无

代码示例

代码示例来源:origin: org.bedework/bw-ical4j-cl

/**
 * @param value a string representation of a date
 * @throws ParseException where the specified string is not a valid date
 */
public Date(final String value) throws ParseException {
  this();
  setTime(getFormat().parse(value).getTime());
}

代码示例来源:origin: org.bedework/bw-ical4j-cl

/**
   * @param value a string representation of a date
   * @param pattern a date pattern to apply when parsing
   * @throws ParseException where the specified string is not a valid date
   */
  public Date(String value, String pattern) throws ParseException {
    super(pattern, Dates.PRECISION_DAY, TimeZones.getDateTimeZone());
    setTime(getFormat().parse(value).getTime());
  }
}

代码示例来源:origin: net.oneandone.ical4j/ical4j

/**
 * @param value a string representation of a date
 * @throws ParseException where the specified string is not a valid date
 */
public Date(final String value) throws ParseException {
  this();
  try {
    setTime(getFormat().parse(value).getTime());
  } catch (ParseException pe) {
    if (CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_VCARD_COMPATIBILITY)) {
      final DateFormat parseFormat = new SimpleDateFormat(VCARD_PATTERN);
      parseFormat.setTimeZone(TimeZones.getDateTimeZone());
      setTime(parseFormat.parse(value).getTime());
    }
    else {
      throw pe;
    }
  }
}

代码示例来源:origin: ical4j/ical4j

/**
 * @param value a string representation of a date
 * @throws ParseException where the specified string is not a valid date
 */
public Date(final String value) throws ParseException {
  this();
  try {
    setTime(getFormat().parse(value).getTime());
  } catch (ParseException pe) {
    if (CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_VCARD_COMPATIBILITY)) {
      final DateFormat parseFormat = new SimpleDateFormat(VCARD_PATTERN);
      parseFormat.setTimeZone(TimeZones.getDateTimeZone());
      setTime(parseFormat.parse(value).getTime());
    }
    else {
      throw pe;
    }
  }
}

代码示例来源:origin: org.mnode.ical4j/ical4j

/**
 * @param value a string representation of a date
 * @throws ParseException where the specified string is not a valid date
 */
public Date(final String value) throws ParseException {
  this();
  try {
    setTime(getFormat().parse(value).getTime());
  } catch (ParseException pe) {
    if (CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_VCARD_COMPATIBILITY)) {
      final DateFormat parseFormat = new SimpleDateFormat(VCARD_PATTERN);
      parseFormat.setTimeZone(TimeZones.getDateTimeZone());
      setTime(parseFormat.parse(value).getTime());
    }
    else {
      throw pe;
    }
  }
}

代码示例来源:origin: org.bedework.ical4j/ical4j

/**
 * @param value a string representation of a date
 * @throws ParseException where the specified string is not a valid date
 */
public Date(final String value) throws ParseException {
  this();
  try {
    setTime(getFormat().parse(value).getTime());
  } catch (ParseException pe) {
    if (CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_VCARD_COMPATIBILITY)) {
      final DateFormat parseFormat = new SimpleDateFormat(VCARD_PATTERN);
      parseFormat.setTimeZone(TimeZones.getDateTimeZone());
      setTime(parseFormat.parse(value).getTime());
    }
    else {
      throw pe;
    }
  }
}

相关文章