gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-17 17:18:40 27 4
gpt4 key购买 nike

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

Years.yearsBetween介绍

[英]Creates a Years representing the number of whole years between the two specified datetimes. This method corectly handles any daylight savings time changes that may occur during the interval.
[中]创建一个Years,表示两个指定日期时间之间的整年数。此方法可正确处理间隔期间可能发生的任何夏令时更改。

代码示例

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

prepositionId = R.string.joda_time_android_preposition_for_time;
else if (Years.yearsBetween(now, timeDate).getYears() != 0) {

代码示例来源:origin: prestodb/presto

@Test
public void testDateDiffDate()
{
  DateTime baseDateTime = new DateTime(1960, 5, 3, 0, 0, 0, 0, DateTimeZone.UTC);
  String baseDateTimeLiteral = "DATE '1960-05-03'";
  assertFunction("date_diff('day', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) daysBetween(baseDateTime, DATE).getDays());
  assertFunction("date_diff('week', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) weeksBetween(baseDateTime, DATE).getWeeks());
  assertFunction("date_diff('month', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths());
  assertFunction("date_diff('quarter', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths() / 3);
  assertFunction("date_diff('year', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) yearsBetween(baseDateTime, DATE).getYears());
}

代码示例来源:origin: prestodb/presto

assertFunction("date_diff('month', " + baseDateTimeLiteral + ", " + TIMESTAMP_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, TIMESTAMP).getMonths());
assertFunction("date_diff('quarter', " + baseDateTimeLiteral + ", " + TIMESTAMP_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, TIMESTAMP).getMonths() / 3);
assertFunction("date_diff('year', " + baseDateTimeLiteral + ", " + TIMESTAMP_LITERAL + ")", BIGINT, (long) yearsBetween(baseDateTime, TIMESTAMP).getYears());
assertFunction("date_diff('year', " + weirdBaseDateTimeLiteral + ", " + WEIRD_TIMESTAMP_LITERAL + ")",
    BIGINT,
    (long) yearsBetween(weirdBaseDateTime, WEIRD_TIMESTAMP).getYears());

代码示例来源:origin: io.lsn.spring/utilities

/**
 * get years amount between two dates
 *
 * @param fromDate
 * @param toDate
 * @return
 */
public static int yearsBetween(Date fromDate, Date toDate) {
  DateTime from = new DateTime(fromDate.getTime());
  DateTime to = new DateTime(toDate.getTime());
  return Years.yearsBetween(from, to).getYears();
}

代码示例来源:origin: com.atlassian.confluence.extra.chart/chart-plugin

private boolean isValidDateForTask(Date startDate, Date verifiedDate) {
  if (anchorDate == null) {
    anchorDate = startDate;
  } else {
    anchorDate = anchorDate.before(startDate) ? anchorDate : startDate;
  }
  long distance = Years.yearsBetween(new LocalDate(anchorDate), new LocalDate(verifiedDate)).getYears();
  return distance <= MAX_RANGE && !verifiedDate.after(MAX_DATE);
}

代码示例来源:origin: io.lsn/spring-core

/**
 * get years amount between two dates
 *
 * @param fromDate
 * @param toDate
 * @return
 */
public static int yearsBetween(Date fromDate, Date toDate) {
  DateTime from = new DateTime(fromDate.getTime());
  DateTime to = new DateTime(toDate.getTime());
  return Years.yearsBetween(from, to).getYears();
}

代码示例来源:origin: com.github.Alex-2713-GitHub/alex-cloud-framework-date

/**
 * isSameYears 判断两个日期是否在同一年
 * @param dateTime1 日期1
 * @param dateTime2 日期2
 * @return
 */
public static boolean isSameYears(DateTime dateTime1, DateTime dateTime2) {
  boolean res = false;
  int intervalYears = Years.yearsBetween(dateTime1, dateTime2).getYears();
  if (intervalYears == 0) {
    res = true;
  }
  return res;
}

代码示例来源:origin: kiegroup/droolsjbpm-integration

public int getAge() {
  return Years.yearsBetween(birthDate, new LocalDate()).getYears();
}

代码示例来源:origin: org.eobjects.analyzerbeans/AnalyzerBeans-basic-transformers

@Override
public Integer[] transform(InputRow inputRow) {
  Integer[] result = new Integer[2];
  Date date = inputRow.getValue(dateColumn);
  if (date != null) {
    long diffMillis = today.getTime() - date.getTime();
    int diffDays = (int) (diffMillis / (1000 * 60 * 60 * 24));
    result[0] = diffDays;
    // use Joda time to easily calculate the diff in years
    int diffYears = Years.yearsBetween(new DateTime(date), new DateTime(today)).getYears();
    result[1] = diffYears;
  }
  return result;
}

代码示例来源:origin: datacleaner/DataCleaner

@Override
public Integer[] transform(final InputRow inputRow) {
  final Integer[] result = new Integer[2];
  final Date date = inputRow.getValue(dateColumn);
  if (date != null) {
    final long diffMillis = today.getTime() - date.getTime();
    final int diffDays = (int) (diffMillis / (1000 * 60 * 60 * 24));
    result[0] = diffDays;
    // use Joda time to easily calculate the diff in years
    final int diffYears = Years.yearsBetween(new DateTime(date), new DateTime(today)).getYears();
    result[1] = diffYears;
  }
  return result;
}

代码示例来源:origin: io.codearte.jfairy/jfairy

@Override
public void generateAge() {
  if (dateOfBirth != null) {
    age = Years.yearsBetween(dateOfBirth, DateTime.now()).getYears();
  } else {
    if (age != null) {
      return;
    }
    age = baseProducer.randomBetween(MIN_AGE, MAX_AGE);
  }
}

代码示例来源:origin: com.hurence.logisland/logisland-outlier-detection-plugin

@Nullable
  @Override
  public Long apply(@Nullable TimeRange timeRange) {
    DateTime end = new DateTime(timeRange.getEnd());
    DateTime begin = new DateTime(timeRange.getBegin());
    Years years = Years.yearsBetween(begin, end);
    return (long)years.getYears();
  }
}),

代码示例来源:origin: fi.vm.sade.haku/hakemus-api

@Override
  public boolean evaluate(final Map<String, String> context) {
    String dateOfBirth = getDateOfBirth(context);
    if (dateOfBirth == null) {
      return false;
    } else {
      DateTime dateTime = DateTime.parse(dateOfBirth, DateTimeFormat.forPattern("dd.MM.yyyy"));
      return Integer.parseInt(getLeft().getValue(context)) <= Years.yearsBetween(new LocalDate(dateTime), new LocalDate()).getYears();
    }

  }
}

代码示例来源:origin: ZieIony/NaturalDateFormat

private void formatYears(DateTime now, DateTime then, StringBuffer text) {
  int yearsBetween = Years.yearsBetween(now.toLocalDate(), then.toLocalDate()).getYears();
  if (yearsBetween == 0) {
    if ((format & MONTHS) != 0) {
      formatMonths(now, then, text);
    } else {
      text.append(context.getString(R.string.thisYear));
    }
  } else if (yearsBetween > 0) {    // in N years
    text.append(context.getResources().getQuantityString(R.plurals.carbon_inYears, yearsBetween, yearsBetween));
  } else {    // N years ago
    text.append(context.getResources().getQuantityString(R.plurals.carbon_yearsAgo, -yearsBetween, -yearsBetween));
  }
}

代码示例来源:origin: org.apache.beam/beam-sdks-java-core

@Override
public IntervalWindow assignWindow(Instant timestamp) {
 DateTime datetime = new DateTime(timestamp, timeZone);
 DateTime offsetStart = startDate.withMonthOfYear(monthOfYear).withDayOfMonth(dayOfMonth);
 int yearOffset = Years.yearsBetween(offsetStart, datetime).getYears() / number * number;
 DateTime begin = offsetStart.plusYears(yearOffset);
 DateTime end = begin.plusYears(number);
 return new IntervalWindow(begin.toInstant(), end.toInstant());
}

代码示例来源:origin: org.apache.pig/pig

@Override
public Long exec(Tuple input) throws IOException
{
  if (input == null || input.size() < 2 || input.get(0) == null || input.get(1) == null) {
    return null;
  }
  DateTime startDate = (DateTime) input.get(0);
  DateTime endDate = (DateTime) input.get(1);
  // Larger value first
  Years y = Years.yearsBetween(endDate, startDate);
  // joda limitation, only integer range, at the risk of overflow, need to be improved
  return (long) y.getYears();
}

代码示例来源:origin: apache/incubator-unomi

@Override
  public int execute(Action action, Event event) {
    boolean updated = false;
    if (event.getProfile().getProperty("birthDate") != null) {
      Integer y = Years.yearsBetween(new DateTime(event.getProfile().getProperty("birthDate")), new DateTime()).getYears();
      if (event.getProfile().getProperty("age") == null || event.getProfile().getProperty("age") != y) {
        updated = true;
        event.getProfile().setProperty("age", y);
      }
    }
    return updated ? EventService.PROFILE_UPDATED : EventService.NO_CHANGE;
  }
}

代码示例来源:origin: io.prestosql/presto-main

@Test
public void testDateDiffDate()
{
  DateTime baseDateTime = new DateTime(1960, 5, 3, 0, 0, 0, 0, DateTimeZone.UTC);
  String baseDateTimeLiteral = "DATE '1960-05-03'";
  assertFunction("date_diff('day', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) daysBetween(baseDateTime, DATE).getDays());
  assertFunction("date_diff('week', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) weeksBetween(baseDateTime, DATE).getWeeks());
  assertFunction("date_diff('month', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths());
  assertFunction("date_diff('quarter', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths() / 3);
  assertFunction("date_diff('year', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) yearsBetween(baseDateTime, DATE).getYears());
}

代码示例来源:origin: uk.co.nichesolutions.presto/presto-main

@Test
public void testDateDiffDate()
{
  DateTime baseDateTime = new DateTime(1960, 5, 3, 0, 0, 0, 0, DateTimeZone.UTC);
  String baseDateTimeLiteral = "DATE '1960-05-03'";
  assertFunction("date_diff('day', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, daysBetween(baseDateTime, DATE).getDays());
  assertFunction("date_diff('week', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, weeksBetween(baseDateTime, DATE).getWeeks());
  assertFunction("date_diff('month', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, monthsBetween(baseDateTime, DATE).getMonths());
  assertFunction("date_diff('quarter', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, monthsBetween(baseDateTime, DATE).getMonths() / 3);
  assertFunction("date_diff('year', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, yearsBetween(baseDateTime, DATE).getYears());
}

代码示例来源:origin: prestosql/presto

@Test
public void testDateDiffDate()
{
  DateTime baseDateTime = new DateTime(1960, 5, 3, 0, 0, 0, 0, DateTimeZone.UTC);
  String baseDateTimeLiteral = "DATE '1960-05-03'";
  assertFunction("date_diff('day', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) daysBetween(baseDateTime, DATE).getDays());
  assertFunction("date_diff('week', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) weeksBetween(baseDateTime, DATE).getWeeks());
  assertFunction("date_diff('month', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths());
  assertFunction("date_diff('quarter', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) monthsBetween(baseDateTime, DATE).getMonths() / 3);
  assertFunction("date_diff('year', " + baseDateTimeLiteral + ", " + DATE_LITERAL + ")", BIGINT, (long) yearsBetween(baseDateTime, DATE).getYears());
}

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