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

x33g5p2x  于2022-01-18 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(121)

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

Duration.setValue介绍

暂无

代码示例

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 */
public Duration(final ParameterList aList, final String aValue) {
  super(DURATION, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

代码示例来源:origin: PrivacyApps/calendar-import-export

private static Duration createDuration(String value) {
  Duration d = new Duration();
  d.setValue(value);
  return d;
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 */
public Duration(final ParameterList aList, final String aValue) {
  super(DURATION, aList, new Factory());
  setValue(aValue);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 */
public Duration(final ParameterList aList, final String aValue) {
  super(DURATION, aList, new Factory());
  setValue(aValue);
}

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

/**
 * @param aList a list of parameters for this component
 * @param aValue a value string for this component
 */
public Duration(final ParameterList aList, final String aValue) {
  super(DURATION, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 */
public Duration(final ParameterList aList, final String aValue) {
  super(DURATION, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

相关文章

微信公众号

最新文章

更多