net.fortuna.ical4j.model.property.Action.equals()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(116)

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

Action.equals介绍

暂无

代码示例

代码示例来源:origin: net.oneandone.cosmo/cosmo-core

/**
   * Find and return the first DISPLAY VALARM in a comoponent
   * @param component VEVENT or VTODO
   * @return first DISPLAY VALARM, null if there is none
   */
  public static VAlarm getDisplayAlarm(Component component) {
    ComponentList<VAlarm> alarms = null;
    
    if(component instanceof VEvent) {
      alarms = ((VEvent) component).getAlarms();
    }
    else if(component instanceof VToDo) {
      alarms = ((VToDo) component).getAlarms();
    }
    
    if(alarms==null || alarms.size()==0) {
      return null;
    }
    
    for(Iterator<VAlarm> it = alarms.iterator();it.hasNext();) {
      VAlarm alarm = it.next();
      if(Action.DISPLAY.equals(alarm.getAction())) {
        return alarm;
      }
    }
    
    return null;   
  }
}

代码示例来源:origin: 1and1/cosmo

/**
   * Find and return the first DISPLAY VALARM in a comoponent
   * @param component VEVENT or VTODO
   * @return first DISPLAY VALARM, null if there is none
   */
  public static VAlarm getDisplayAlarm(Component component) {
    ComponentList<VAlarm> alarms = null;
    
    if(component instanceof VEvent) {
      alarms = ((VEvent) component).getAlarms();
    }
    else if(component instanceof VToDo) {
      alarms = ((VToDo) component).getAlarms();
    }
    
    if(alarms==null || alarms.size()==0) {
      return null;
    }
    
    for(Iterator<VAlarm> it = alarms.iterator();it.hasNext();) {
      VAlarm alarm = it.next();
      if(Action.DISPLAY.equals(alarm.getAction())) {
        return alarm;
      }
    }
    
    return null;   
  }
}

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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

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

if (Action.AUDIO.equals(property)) {
  retVal = Action.AUDIO;
else if (Action.DISPLAY.equals(property)) {
  retVal = Action.DISPLAY;
else if (Action.EMAIL.equals(property)) {
  retVal = Action.EMAIL;
else if (Action.PROCEDURE.equals(property)) {
  retVal = Action.PROCEDURE;

代码示例来源:origin: micromata/projectforge

if (Action.AUDIO.equals(alarm.getAction())) {
 event.setReminderActionType(ReminderActionType.MESSAGE_SOUND);
} else {

相关文章