net.fortuna.ical4j.model.WeekDay.<init>()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(6.9k)|赞(0)|评价(0)|浏览(133)

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

WeekDay.<init>介绍

暂无

代码示例

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

/**
 * Returns a weekday representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getWeekDay(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), 0);
}

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

/**
 * Returns a weekday/negative offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getNegativeMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 6);
}

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

/**
 * Returns a weekday/offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH));
}

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

/**
 * @param weekStartDay The weekStartDay to set.
 */
public final void setWeekStartDay(final String weekStartDay) {
  this.weekStartDay = weekStartDay;
  if (weekStartDay != null) {
    calendarWeekStartDay = WeekDay.getCalendarDay(new WeekDay(weekStartDay));
  }
}

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

/**
 * Returns a weekday/negative offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getNegativeMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 6);
}

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

/**
 * Returns a weekday representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getWeekDay(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), 0);
}

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

/**
 * Returns a weekday representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getWeekDay(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), 0);
}

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

/**
 * Returns a weekday/offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH));
}

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

/**
 * Returns a weekday representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static final WeekDay getWeekDay(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), 0);
}

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

/**
 * Returns a weekday/offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static final WeekDay getMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH));
}

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

/**
 * Returns a weekday/negative offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static final WeekDay getNegativeMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 6);
}

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

/**
 * Returns a weekday/offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH));
}

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

/**
 * Returns a weekday/negative offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getNegativeMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 6);
}

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

/**
 * Returns a weekday representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getWeekDay(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), 0);
}

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

/**
 * Returns a weekday/offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH));
}

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

/**
 * Returns a weekday/negative offset representation of the specified calendar.
 * @param cal a calendar (java.util)
 * @return a weekday instance representing the specified calendar
 */
public static WeekDay getNegativeMonthlyOffset(final Calendar cal) {
  return new WeekDay(getDay(cal.get(Calendar.DAY_OF_WEEK)), cal.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 6);
}

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

/**
 * Constructor.
 * @param aString a string representation of a day list
 */
public WeekDayList(final String aString) {
  final boolean outlookCompatibility =
    CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_OUTLOOK_COMPATIBILITY);
  
  final StringTokenizer t = new StringTokenizer(aString, ",");
  while (t.hasMoreTokens()) {
    if (outlookCompatibility) {
      add(new WeekDay(t.nextToken().replaceAll(" ", "")));
    }
    else {
      add(new WeekDay(t.nextToken()));
    }
  }
}

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

/**
 * Constructor.
 * @param aString a string representation of a day list
 */
public WeekDayList(final String aString) {
  final boolean outlookCompatibility =
    CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_OUTLOOK_COMPATIBILITY);
  
  final StringTokenizer t = new StringTokenizer(aString, ",");
  while (t.hasMoreTokens()) {
    if (outlookCompatibility) {
      add(new WeekDay(t.nextToken().replaceAll(" ", "")));
    }
    else {
      add(new WeekDay(t.nextToken()));
    }
  }
}

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

/**
   * Tests the parsing of various offset values.
   */
  public void testOffsetParsing() {
    log.info(new WeekDay("-1SU").toString());
    log.info(new WeekDay("+2SU").toString());
  }
}

代码示例来源:origin: apache/ofbiz-framework

@Override
public void visit(TemporalExpressions.DayInMonth expr) {
  Recur recur = new Recur(Recur.MONTHLY, 0);
  recur.getDayList().add(new WeekDay(dayOfWeekArray[expr.getDayOfWeek() - 1], expr.getOccurrence()));
  this.state.addRecur(recur);
}

相关文章