javax.xml.soap.SOAPElement.getAllAttributesAsQNames()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(95)

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

SOAPElement.getAllAttributesAsQNames介绍

[英]Returns an Iterator over all of the attributes in this SOAPElement as QName objects. The iterator can be used to get the attribute QName, which can then be passed to the method getAttributeValue to retrieve the value of each attribute.
[中]将SOAPElement中所有属性的Iterator作为QName对象返回。迭代器可用于获取属性QName,然后将其传递给方法getAttributeValue以检索每个属性的值。

代码示例

代码示例来源:origin: apache/servicemix-bundles

@Override
@SuppressWarnings("unchecked")
public Iterator<QName> getAllAttributes() {
  return element.getAllAttributesAsQNames();
}

代码示例来源:origin: org.springframework.ws/spring-ws-core

@Override
@SuppressWarnings("unchecked")
public Iterator<QName> getAllAttributes() {
  return element.getAllAttributesAsQNames();
}

代码示例来源:origin: org.springframework.ws/org.springframework.ws

@Override
@SuppressWarnings("unchecked")
public Iterator<QName> getAllAttributes(SOAPElement element) {
  return element.getAllAttributesAsQNames();
}

代码示例来源:origin: spring-projects/spring-ws

@Override
@SuppressWarnings("unchecked")
public Iterator<QName> getAllAttributes() {
  return element.getAllAttributesAsQNames();
}

代码示例来源:origin: com.hynnet/xws-security

public Iterator getAllAttributesAsQNames() {
   return delegateElement.getAllAttributesAsQNames();
}

代码示例来源:origin: com.hynnet/xws-security

public Iterator getAllAttributesAsQNames() {
  return delegateElement.getAllAttributesAsQNames();
}

代码示例来源:origin: com.hynnet/xws-security

public Iterator getAllAttributesAsQNames() {
    return delegateElement.getAllAttributesAsQNames();
}

代码示例来源:origin: com.hynnet/xws-security

public Iterator getAllAttributesAsQNames() {
  return  delegateHeader. getAllAttributesAsQNames();
}

相关文章

微信公众号

最新文章

更多