本文整理汇总了Java中org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper类的典型用法代码示例。如果您正苦于以下问题:Java CalendarRecurrenceHelper类的具体用法?Java CalendarRecurrenceHelper怎么用?Java CalendarRecurrenceHelper使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CalendarRecurrenceHelper类属于org.alfresco.service.cmr.calendar包,在下文中一共展示了CalendarRecurrenceHelper类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildParams
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
private static StringBuffer buildParams(Map<String, String> params, StringBuffer text, Map<String, String> days)
{
int day = params.get("BYDAY").split(",").length;
if(day == 7){
text.append(CalendarRecurrenceHelper.DAY);
}
if(day == 5){
text.append(CalendarRecurrenceHelper.WEEKDAYS);
}
if(day == 2){
text.append(CalendarRecurrenceHelper.WEEKENDS);
}
if(day != 7 && day != 5 && day != 2){
text.append(days.get(params.get("BYDAY")));
}
return text;
}
示例2: buildDailyRecurrences
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
protected static void buildDailyRecurrences(Calendar currentDate, long duration, List<Date> dates,
Map<String,String> params, Date onOrAfter, Date until, boolean firstOnly, int interval)
{
CalendarRecurrenceHelper.buildDailyRecurrences(
currentDate, duration, dates, params, onOrAfter, until, firstOnly, interval);
}
示例3: buildWeeklyRecurrences
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
protected static void buildWeeklyRecurrences(Calendar currentDate, long duration, List<Date> dates,
Map<String,String> params, Date onOrAfter, Date until, boolean firstOnly, int interval)
{
CalendarRecurrenceHelper.buildWeeklyRecurrences(
currentDate, duration, dates, params, onOrAfter, until, firstOnly, interval);
}
示例4: buildMonthlyRecurrences
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
protected static void buildMonthlyRecurrences(Calendar currentDate, long duration, List<Date> dates,
Map<String,String> params, Date onOrAfter, Date until, boolean firstOnly, int interval)
{
CalendarRecurrenceHelper.buildMonthlyRecurrences(
currentDate, duration, dates, params, onOrAfter, until, firstOnly, interval);
}
示例5: buildYearlyRecurrences
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
protected static void buildYearlyRecurrences(Calendar currentDate, long duration, List<Date> dates,
Map<String,String> params, Date onOrAfter, Date until, boolean firstOnly, int interval)
{
CalendarRecurrenceHelper.buildYearlyRecurrences(
currentDate, duration, dates, params, onOrAfter, until, firstOnly, interval);
}
示例6: fixOutlookRecurrenceQuirks
import org.alfresco.service.cmr.calendar.CalendarRecurrenceHelper; //导入依赖的package包/类
protected static Map<String,String> fixOutlookRecurrenceQuirks(Map<String,String> params)
{
return CalendarRecurrenceHelper.fixOutlookRecurrenceQuirks(params);
}