org.threeten.bp.LocalDateTime.withMonth()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(4.2k)|赞(0)|评价(0)|浏览(157)

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

LocalDateTime.withMonth介绍

[英]Returns a copy of this LocalDateTime with the month-of-year altered. The time does not affect the calculation and will be the same in the result. If the day-of-month is invalid for the year, it will be changed to the last valid day of the month.

This instance is immutable and unaffected by this method call.
[中]返回更改月份的此LocalDateTime的副本。时间不影响计算,结果相同。如果月份的日期对该年无效,则该日期将更改为该月的最后一个有效日期。
此实例是不可变的,不受此方法调用的影响。

代码示例

代码示例来源:origin: ThreeTen/threetenbp

/**
 * Returns a copy of this {@code OffsetDateTime} with the month-of-year altered.
 * The offset does not affect the calculation and will be the same in the result.
 * If the day-of-month is invalid for the year, it will be changed to the last valid day of the month.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param month  the month-of-year to set in the result, from 1 (January) to 12 (December)
 * @return an {@code OffsetDateTime} based on this date-time with the requested month, not null
 * @throws DateTimeException if the month-of-year value is invalid
 */
public OffsetDateTime withMonth(int month) {
  return with(dateTime.withMonth(month), offset);
}

代码示例来源:origin: org.threeten/threetenbp

/**
 * Returns a copy of this {@code OffsetDateTime} with the month-of-year altered.
 * The offset does not affect the calculation and will be the same in the result.
 * If the day-of-month is invalid for the year, it will be changed to the last valid day of the month.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param month  the month-of-year to set in the result, from 1 (January) to 12 (December)
 * @return an {@code OffsetDateTime} based on this date-time with the requested month, not null
 * @throws DateTimeException if the month-of-year value is invalid
 */
public OffsetDateTime withMonth(int month) {
  return with(dateTime.withMonth(month), offset);
}

代码示例来源:origin: ThreeTen/threetenbp

/**
 * Returns a copy of this {@code ZonedDateTime} with the month-of-year value altered.
 * <p>
 * This operates on the local time-line,
 * {@link LocalDateTime#withMonth(int) changing the month} of the local date-time.
 * This is then converted back to a {@code ZonedDateTime}, using the zone ID
 * to obtain the offset.
 * <p>
 * When converting back to {@code ZonedDateTime}, if the local date-time is in an overlap,
 * then the offset will be retained if possible, otherwise the earlier offset will be used.
 * If in a gap, the local date-time will be adjusted forward by the length of the gap.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param month  the month-of-year to set in the result, from 1 (January) to 12 (December)
 * @return a {@code ZonedDateTime} based on this date-time with the requested month, not null
 * @throws DateTimeException if the month-of-year value is invalid
 */
public ZonedDateTime withMonth(int month) {
  return resolveLocal(dateTime.withMonth(month));
}

代码示例来源:origin: org.threeten/threetenbp

/**
 * Returns a copy of this {@code ZonedDateTime} with the month-of-year value altered.
 * <p>
 * This operates on the local time-line,
 * {@link LocalDateTime#withMonth(int) changing the month} of the local date-time.
 * This is then converted back to a {@code ZonedDateTime}, using the zone ID
 * to obtain the offset.
 * <p>
 * When converting back to {@code ZonedDateTime}, if the local date-time is in an overlap,
 * then the offset will be retained if possible, otherwise the earlier offset will be used.
 * If in a gap, the local date-time will be adjusted forward by the length of the gap.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param month  the month-of-year to set in the result, from 1 (January) to 12 (December)
 * @return a {@code ZonedDateTime} based on this date-time with the requested month, not null
 * @throws DateTimeException if the month-of-year value is invalid
 */
public ZonedDateTime withMonth(int month) {
  return resolveLocal(dateTime.withMonth(month));
}

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

LocalDateTime ldt = LocalDateTime.now(zoneId)
                .with(TemporalAdjusters.firstInMonth(transitionRuleDayOfWeek))
                .withMonth(transitionRuleMonthValue)
                .with(transitionRule.getLocalTime());
Month month = ldt.getMonth();
  observance.getProperties().add(offsetTo);
  observance.getProperties().add(rrule);
  observance.getProperties().add(new DtStart(String.format(DATE_TIME_TPL, startDate.withMonth(transitionRule.getMonth().getValue())
                                                      .withDayOfMonth(transitionRule.getDayOfMonthIndicator())
                                                      .with(transitionRule.getDayOfWeek()))));

相关文章