本文整理汇总了Java中org.gbif.api.model.checklistbank.ParsedName.setParsedPartially方法的典型用法代码示例。如果您正苦于以下问题:Java ParsedName.setParsedPartially方法的具体用法?Java ParsedName.setParsedPartially怎么用?Java ParsedName.setParsedPartially使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.gbif.api.model.checklistbank.ParsedName
的用法示例。
在下文中一共展示了ParsedName.setParsedPartially方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseAuthorship
import org.gbif.api.model.checklistbank.ParsedName; //导入方法依赖的package包/类
/**
* Extract authorship from the name itself as best as we can to at least do some common string comparison
*/
private void parseAuthorship(ParsedName pn) {
// try to use full sciname minus the epithets
String lastEpithet = ObjectUtils.coalesce(pn.getInfraSpecificEpithet(), pn.getSpecificEpithet(), pn.getGenusOrAbove());
if (lastEpithet != null && pn.getScientificName() != null) {
int idx = pn.getScientificName().lastIndexOf(lastEpithet);
if (idx >= 0) {
pn.setAuthorship(pn.getScientificName().substring(idx + lastEpithet.length()));
}
}
// copy full name to year, will be extracted/normalized in year comparison
pn.setYear(pn.getScientificName());
pn.setParsedPartially(false);
}
示例2: roundtrip
import org.gbif.api.model.checklistbank.ParsedName; //导入方法依赖的package包/类
@Test
public void roundtrip() throws Exception {
ParsedName pn = new ParsedName();
pn.setType(NameType.SCIENTIFIC);
pn.setParsedPartially(true);
pn.setGenusOrAbove("Abies");
pn.setSpecificEpithet("alba");
pn.setInfraSpecificEpithet("alpina");
pn.setRank(Rank.INFRASUBSPECIFIC_NAME);
pn.setBracketYear("123");
pn.setYear("1987");
pn.setAuthorship("Markus");
pn.setBracketAuthorship("Peter");
pn.setNotho(NamePart.SPECIFIC);
pn.setRemarks("no remarks");
pn.setNomStatus("nom.illeg.");
pn.setInfraGeneric("Pineta");
pn.setCultivarEpithet("Green Hell");
pn.setSensu("Berendsohn 1999");
pn.setStrain("train");
pn.setScientificName(pn.fullName());
mapper.create(pn);
ParsedName pn2 = mapper.getByName(pn.getScientificName(), pn.getRank());
assertEquals(pn, pn2);
}