本文整理了Java中org.geotools.xsd.XSD.getAllDependencies()
方法的一些代码示例,展示了XSD.getAllDependencies()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSD.getAllDependencies()
方法的具体详情如下:
包路径:org.geotools.xsd.XSD
类名称:XSD
方法名:getAllDependencies
[英]Returns all dependencies , direct and transitive that this xsd depends on.
[中]返回此xsd所依赖的所有依赖项,包括直接依赖项和可传递依赖项。
代码示例来源:origin: geotools/geotools
/**
* Transitively returns the type mapping profile for this schema and all schemas that this
* schema depends on.
*/
public final List<Schema> getAllTypeMappingProfiles() {
LinkedList profiles = new LinkedList();
for (XSD xsd : getAllDependencies()) {
Schema profile = xsd.getTypeMappingProfile();
if (!profile.isEmpty()) {
profiles.add(profile);
}
}
return profiles;
}
代码示例来源:origin: geotools/geotools
List<XSD> deps = xsd.getAllDependencies();
deps.add(xsd);
内容来源于网络,如有侵权,请联系作者删除!