/**
* This private method is only for serialization via jackson and not exposed anywhere else!
* It maps the verbatimField terms into properties with their full qualified name.
*/
@JsonAnyGetter
private Map<String, String> jsonVerbatimFields() {
Map<String, String> extendedProps = Maps.newHashMap();
for (Map.Entry<Term, String> prop : fields.entrySet()) {
extendedProps.put(prop.getKey().qualifiedName(), prop.getValue());
}
return extendedProps;
}
VerbatimNameUsage.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:gbif-api
作者:
评论列表
文章目录