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

x33g5p2x  于2022-02-01 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(92)

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

Url.setValue介绍

暂无

代码示例

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 * @throws URISyntaxException where the specified value string is not a valid uri
 */
public Url(final ParameterList aList, final String aValue)
    throws URISyntaxException {
  super(URL, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 * @throws URISyntaxException where the specified value string is not a valid uri
 */
public Url(final ParameterList aList, final String aValue)
    throws URISyntaxException {
  super(URL, aList, new Factory());
  setValue(aValue);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 * @throws URISyntaxException where the specified value string is not a valid uri
 */
public Url(final ParameterList aList, final String aValue)
    throws URISyntaxException {
  super(URL, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 * @throws URISyntaxException where the specified value string is not a valid uri
 */
public Url(final ParameterList aList, final String aValue)
    throws URISyntaxException {
  super(URL, 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
 * @throws URISyntaxException where the specified value string is not a valid uri
 */
public Url(final ParameterList aList, final String aValue)
    throws URISyntaxException {
  super(URL, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

代码示例来源:origin: org.sakaiproject.calendaring/external-calendaring-service-impl

Url u = new Url();
try {
  u.setValue(url);
  vevent.getProperties().add(u);
} catch (URISyntaxException e) {

相关文章