org.orcid.jaxb.model.message.Year.<init>()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(100)

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

Year.<init>介绍

暂无

代码示例

代码示例来源:origin: ORCID/ORCID-Source

/**
 * Create an instance of {@link Year }
 * 
 */
public Year createYear() {
  return new Year();
}

代码示例来源:origin: ORCID/ORCID-Source

public FuzzyDate(Integer year, Integer month, Integer day) {
  this.year = year != null ? new Year(year) : null;
  this.month = month != null ? new Month(month) : null;
  this.day = day != null ? new Day(day) : null;
}

代码示例来源:origin: ORCID/ORCID-Source

private PublicationDate getPublicationDateFromEntity(PublicationDateEntity fuzzyDate) {
  if (fuzzyDate == null) {
    return null;
  }
  Year year = fuzzyDate.getYear() != null ? new Year(fuzzyDate.getYear()) : null;
  Month month = fuzzyDate.getMonth() != null ? new Month(fuzzyDate.getMonth()) : null;
  Day day = fuzzyDate.getDay() != null ? new Day(fuzzyDate.getDay()) : null;
  return new PublicationDate(year, month, day);
}

相关文章

微信公众号

最新文章

更多

Year类方法