- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.ws.commons.schema.XmlSchemaGroupBase.getItems()
方法的一些代码示例,展示了XmlSchemaGroupBase.getItems()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlSchemaGroupBase.getItems()
方法的具体详情如下:
包路径:org.apache.ws.commons.schema.XmlSchemaGroupBase
类名称:XmlSchemaGroupBase
方法名:getItems
暂无
代码示例来源:origin: org.apache.openejb/openejb-axis
private static List<XmlSchemaElement> getNestedElements(final XmlSchemaComplexType complexType) {
final List<XmlSchemaElement> elements = new ArrayList<XmlSchemaElement>();
final XmlSchemaParticle particle = complexType.getParticle();
if (particle instanceof XmlSchemaElement) {
final XmlSchemaElement element = (XmlSchemaElement) particle;
elements.add(element);
} else if (particle instanceof XmlSchemaGroupBase && !(particle instanceof XmlSchemaChoice)) {
final XmlSchemaGroupBase groupBase = (XmlSchemaGroupBase) particle;
for (final Iterator iterator = groupBase.getItems().getIterator(); iterator.hasNext(); ) {
final XmlSchemaParticle child = (XmlSchemaParticle) iterator.next();
if (child instanceof XmlSchemaElement) {
final XmlSchemaElement element = (XmlSchemaElement) child;
elements.add(element);
}
}
} else {
// ignore all other types... you can have these other types, but JAX-RPC doesn't support them
}
return elements;
}
}
代码示例来源:origin: org.apache.axis2.transport/axis2-transport-xmpp
if (particle instanceof XmlSchemaSequence || particle instanceof XmlSchemaAll) {
XmlSchemaGroupBase xmlSchemaGroupBase = (XmlSchemaGroupBase)particle;
Iterator iterator = xmlSchemaGroupBase.getItems().getIterator();
代码示例来源:origin: org.codehaus.xfire/xfire-core
private static boolean containsAnonymousTypes(XmlSchemaComplexType ct) {
XmlSchemaGroupBase particle = (XmlSchemaGroupBase)ct.getParticle();
if (particle == null) {
return false;
}
XmlSchemaObjectCollection items = particle.getItems();
for (int i = 0; i < items.getCount(); i++) {
XmlSchemaObject item = items.getItem(i);
if (item instanceof XmlSchemaElement) {
XmlSchemaElement el = (XmlSchemaElement) item;
if (el.getSchemaTypeName() == null) return true;
} else if (item instanceof XmlSchemaElement) {
XmlSchemaComplexType el = (XmlSchemaComplexType) item;
if (el.getParticle() != null) return true;
}
}
return false;
}
代码示例来源:origin: org.apache.tuscany.sca/tuscany-binding-ws-wsdlgen
public void processXMLSchemaObject(String toNamespace, XmlSchemaObject obj, XmlSchemaObject fixUpObj){
if (obj instanceof XmlSchemaComplexType){
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getParticle(), fixUpObj);
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getContentModel(), fixUpObj);
} else if (obj instanceof XmlSchemaComplexContent){
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexContent)obj).getContent(), fixUpObj);
} else if (obj instanceof XmlSchemaElement){
XmlSchemaElement element = (XmlSchemaElement)obj;
if(element.getSchemaType() == fixUpObj){
QName name = element.getSchemaTypeName();
QName newName = new QName(toNamespace, name.getLocalPart());
element.setSchemaTypeName(newName);
}
((XmlSchemaElement)obj).getSchemaType();
} else if (obj instanceof XmlSchemaGroupBase){
XmlSchemaObjectCollection items = ((XmlSchemaGroupBase)obj).getItems();
Iterator<XmlSchemaObject> iter = items.getIterator();
while(iter.hasNext()){
processXMLSchemaObject(toNamespace, iter.next(), fixUpObj);
}
} else if (obj instanceof XmlSchemaComplexContentExtension){
XmlSchemaComplexContentExtension extension = (XmlSchemaComplexContentExtension)obj;
QName name = extension.getBaseTypeName();
QName newName = new QName(toNamespace, name.getLocalPart());
extension.setBaseTypeName(newName);
}
// TODO - what other structure items will be generated by JAXB?
}
代码示例来源:origin: org.apache.tuscany.sca/tuscany-base-runtime
public void processXMLSchemaObject(String toNamespace, XmlSchemaObject obj, XmlSchemaObject fixUpObj){
if (obj instanceof XmlSchemaComplexType){
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getParticle(), fixUpObj);
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexType)obj).getContentModel(), fixUpObj);
} else if (obj instanceof XmlSchemaComplexContent){
processXMLSchemaObject(toNamespace, ((XmlSchemaComplexContent)obj).getContent(), fixUpObj);
} else if (obj instanceof XmlSchemaElement){
XmlSchemaElement element = (XmlSchemaElement)obj;
if(element.getSchemaType() == fixUpObj){
QName name = element.getSchemaTypeName();
QName newName = new QName(toNamespace, name.getLocalPart());
element.setSchemaTypeName(newName);
}
((XmlSchemaElement)obj).getSchemaType();
} else if (obj instanceof XmlSchemaGroupBase){
XmlSchemaObjectCollection items = ((XmlSchemaGroupBase)obj).getItems();
Iterator<XmlSchemaObject> iter = items.getIterator();
while(iter.hasNext()){
processXMLSchemaObject(toNamespace, iter.next(), fixUpObj);
}
} else if (obj instanceof XmlSchemaComplexContentExtension){
XmlSchemaComplexContentExtension extension = (XmlSchemaComplexContentExtension)obj;
QName name = extension.getBaseTypeName();
QName newName = new QName(toNamespace, name.getLocalPart());
extension.setBaseTypeName(newName);
}
// TODO - what other structure items will be generated by JAXB?
}
代码示例来源:origin: org.apache.axis2.transport/axis2-transport-sms
if (particle instanceof XmlSchemaSequence || particle instanceof XmlSchemaAll) {
XmlSchemaGroupBase xmlSchemaGroupBase = (XmlSchemaGroupBase)particle;
Iterator iterator = xmlSchemaGroupBase.getItems().getIterator();
Schema.org中的 priceRange 属性是什么意思? https://schema.org/priceRange 我不明白这是什么意思,我住在哈萨克斯坦,也许我的文化或语言不明确。您能举一
用作引用:https://support.google.com/webmasters/answer/146750?hl=en 您会注意到在“产品”下有一个属性类别,此外页面下方还有一个示例: Too
我对 Doctrine 很陌生。我用 Doctrine 为我自己做了两个小项目,但现在我要为我的客户创建大项目。该项目将有50多个表。有没有办法生成schema.yml?我尝试了 DB Designe
在 Mongoose 模式中,我们可以通过两种方式创建方法 SchemaName.methods.functionName 和 SchemaName.statics.functionName . 静态
我读了这个Google doc .它说我们不使用列表中的产品。 那么对于产品列表(具有多页的类似产品的类别,如“鞋子”),推荐使用哪种模式? 我用这个: { "@context": "htt
我目前在做DBpedia数据集,想通过wikidata实现schema.org和DBpedia的映射。因此我想知道 schema.org 和 wikidata 之间是否存在任何映射。 最佳答案 我认为
如果看一下 Movie在 schema.org 中输入,actor 和 actors 属性都是允许的(actor 取代 actors)。但是 author 和 contributor 属性没有等效项。
我正在尝试将 Vertica 架构从一个物理集群导出和导入到另一个物理集群。我的测试实例有一个集群,我的生产实例有 3 个集群。 我探索了以下选项,但它们仅限于在一个物理 Vertica 实例上移动数
我们有一些餐厅有多个地点或分支机构。我想包含正确的 Schema.org 标记,但找不到任何允许列出多个餐厅的内容。 每家餐厅都有自己的地址、电子邮件、电话和营业时间,甚至可能是“分店名称”。 两个分
我在一个页面中有多个综合评分片段。 有没有办法让其中之一成为默认值?将显示在搜索引擎结果中的那个? 谢谢大家! 更新:该网页本质上是品牌的页面。它包含品牌评论的总评分及其产品列表(每个产品的总评分)。
有谁知道是否可以用另一个 XML 模式验证一个 XML 模式?如果是这样,那里有引用实现吗?我想使用 JAXB 解析模式文档。 最佳答案 当然。大多数时候,您只需将浏览器指向用作 XML 文档 nam
我正在尝试创建 springdoc swagger 文档,我想代表一个具有数据类型 Map 的请求正文以更好的方式为客户提供可读性。但是当我声明 @io.swagger.v3.oas.annotati
当我们创建数据库时会创建一个公共(public)模式,如果我们不指定任何模式,则会在公共(public)模式下创建表。如果您在从数据库中删除公共(public)模式时看到或遇到任何问题,能否告诉我,因
网站的根页面(即 http://example.com/ )的特殊之处在于它是默认的着陆页。它可能包含许多不同的对象类型。 它可能被认为是一个网站,或者一个博客等... 但它是否也应该被标记为给定对象
我网站的产品页面有面包屑导航。 Product 类型没有breadcrumb。 我这样做: "@type": "Webpage", "breadcrumb": {... "mainEntity":
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 1 年前。 社区1年前审
我正在尝试从模式注册表中检索给定 kafka 主题的模式主题版本。我可以使用 client.register(schema-name, schema) 成功发布新版本,但我不确定如何检索版本。我在下面
我有一个地方/本地企业,它有各种字段,可以很好地映射到 schema.org 条目。有一个字段我不知道如何标记。我们有指向该企业社交媒体帐户的链接,例如他们的 Twitter 帐户、Facebook
我在 schema.schema 中有一个 number_of_servers 字段,我需要为其设置一个范围。有什么办法吗? Schema: map[string]*schema.Schema{
在向我的站点添加微数据时,我使用了 schema.org 上的词汇表。 目前,我使用 http://schema.org/SoftwareApplication 来标记软件。由于 schema.org
我是一名优秀的程序员,十分优秀!