org.joda.time.YearMonthDay.toDateTimeAtCurrentTime()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(180)

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

YearMonthDay.toDateTimeAtCurrentTime介绍

[英]Converts this partial to a full datetime using the default time zone setting the date fields from this instance and the time fields from the current time.
[中]使用默认时区设置此实例的日期字段和当前时间的时间字段,将此部分日期时间转换为完整日期时间。

代码示例

代码示例来源:origin: JodaOrg/joda-time

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: joda-time/joda-time

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: camunda/camunda-bpm-platform

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

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

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: io.virtdata/virtdata-lib-realer

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: redfish64/TinyTravelTracker

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.joda-time

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

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

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: org.joda/com.springsource.org.joda.time

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: Nextdoor/bender

  1. /**
  2. * Converts this partial to a full datetime using the default time zone
  3. * setting the date fields from this instance and the time fields from
  4. * the current time.
  5. *
  6. * @return this date as a datetime with the time as the current time
  7. */
  8. public DateTime toDateTimeAtCurrentTime() {
  9. return toDateTimeAtCurrentTime(null);
  10. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. public DateTime getFinalSituationDate() {
  2. if (finalSituationDate == null) {
  3. return getSituationDate().toDateTimeAtCurrentTime();
  4. }
  5. return finalSituationDate;
  6. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. public Date getEndDateInDateType() {
  2. return (getEndDate() != null) ? getEndDate().toDateTimeAtCurrentTime().toDate() : null;
  3. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. public Date getBeginDateInDateType() {
  2. return (getBeginDate() != null) ? getBeginDate().toDateTimeAtCurrentTime().toDate() : null;
  3. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. public void setStateDate(final YearMonthDay ymd) {
  2. if (ymd == null) {
  3. setStateDateTime(null);
  4. return;
  5. }
  6. setStateDateTime(new YearMonthDay().equals(ymd) ? ymd.toDateTimeAtCurrentTime() : ymd.toDateTimeAtMidnight());
  7. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. private int getNumberOfApprovedCourses(final Student student) {
  2. Collection<ICurriculumEntry> entries =
  3. student.getLastActiveRegistration()
  4. .getCurriculum(getExecutionSemester().getEndDateYearMonthDay().toDateTimeAtCurrentTime(),
  5. getExecutionSemester().getExecutionYear(), null).getCurriculumEntries();
  6. return entries.size() * 20;
  7. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. private BigDecimal getApprovedECTS(final Student student) {
  2. return student
  3. .getLastActiveRegistration()
  4. .getCurriculum(getExecutionSemester().getEndDateYearMonthDay().toDateTimeAtCurrentTime(),
  5. getExecutionSemester().getExecutionYear(), null).getSumEctsCredits();
  6. }

代码示例来源:origin: FenixEdu/fenixedu-academic

  1. private int getApprovedGradeValuesSum(final Student student) {
  2. Collection<ICurriculumEntry> entries =
  3. student.getLastActiveRegistration()
  4. .getCurriculum(getExecutionSemester().getEndDateYearMonthDay().toDateTimeAtCurrentTime(),
  5. getExecutionSemester().getExecutionYear(), null).getCurriculumEntries();
  6. BigDecimal sum = new BigDecimal(0d);
  7. for (final ICurriculumEntry entry : entries) {
  8. if (entry.getGrade().isNumeric()) {
  9. final BigDecimal weigth = entry.getWeigthForCurriculum();
  10. if (GradeScale.TYPE20 == entry.getGrade().getGradeScale()) {
  11. sum = sum.add(entry.getGrade().getNumericValue());
  12. }
  13. }
  14. }
  15. return sum.intValue();
  16. }

相关文章