本文整理了Java中com.sun.syndication.feed.module.base.types.YearType.<init>()
方法的一些代码示例,展示了YearType.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearType.<init>()
方法的具体详情如下:
包路径:com.sun.syndication.feed.module.base.types.YearType
类名称:YearType
方法名:<init>
[英]Creates a new year from a string value.
[中]从字符串值创建新的一年。
代码示例来源:origin: org.rometools/rome-modules
/**
* Duplicates this object.
* @return Cloned Year.
*/
public Object clone() {
return new YearType(Integer.toString(this.year));
}
代码示例来源:origin: rome/modules
/**
* Duplicates this object.
* @return Cloned Year.
*/
public Object clone() {
return new YearType(Integer.toString(this.year));
}
代码示例来源:origin: rome/modules
tagValue = GenderEnumeration.findByValue(tag.getText().trim());
} else if((pd.getPropertyType() == YearType.class)||(pd.getPropertyType().getComponentType() == YearType.class)) {
tagValue = new YearType(tag.getText().trim());
} else if((pd.getPropertyType() == Size.class)||(pd.getPropertyType().getComponentType() == Size.class)) {
tagValue = new Size(tag.getText().trim());
代码示例来源:origin: org.rometools/rome-modules
tagValue = GenderEnumeration.findByValue(tag.getText().trim());
} else if((pd.getPropertyType() == YearType.class)||(pd.getPropertyType().getComponentType() == YearType.class)) {
tagValue = new YearType(tag.getText().trim());
} else if((pd.getPropertyType() == Size.class)||(pd.getPropertyType().getComponentType() == Size.class)) {
tagValue = new Size(tag.getText().trim());
内容来源于网络,如有侵权,请联系作者删除!