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

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

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

Geo.setValue介绍

暂无

代码示例

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

/**
 * Creates a new instance by parsing the specified string representation.
 *
 * @param value a geo value
 */
public Geo(final String value) {
  super(GEO, new Factory());
  setValue(value);
}

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

/**
 * Creates a new instance by parsing the specified string representation.
 *
 * @param value a geo value
 */
public Geo(final String value) {
  super(GEO, new Factory());
  setValue(value);
}

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

/**
 * @param aList  a list of parameters for this component
 * @param aValue a value string for this component
 */
public Geo(final ParameterList aList, final String aValue) {
  super(GEO, aList, new Factory());
  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 Geo(final ParameterList aList, final String aValue) {
  super(GEO, aList, PropertyFactoryImpl.getInstance());
  setValue(aValue);
}

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

/**
 * Creates a new instance by parsing the specified string representation.
 * @param value a geo value
 */
public Geo(final String value) {
  super(GEO, PropertyFactoryImpl.getInstance());
  setValue(value);
}

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

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

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

/**
 * Creates a new instance by parsing the specified string representation.
 *
 * @param value a geo value
 */
public Geo(final String value) {
  super(GEO, PropertyFactoryImpl.getInstance());
  setValue(value);
}

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

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

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

/**
 * Creates a new instance by parsing the specified string representation.
 *
 * @param value a geo value
 */
public Geo(final String value) {
  super(GEO, PropertyFactoryImpl.getInstance());
  setValue(value);
}

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

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

相关文章