本文整理了Java中net.fortuna.ical4j.model.property.Geo.setValue()
方法的一些代码示例,展示了Geo.setValue()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geo.setValue()
方法的具体详情如下:
包路径:net.fortuna.ical4j.model.property.Geo
类名称: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);
}
内容来源于网络,如有侵权,请联系作者删除!