org.apache.axis.wsdl.toJava.Utils.getMIMETypeQName()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(93)

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

Utils.getMIMETypeQName介绍

[英]Given a MIME type, return the AXIS-specific type QName.
[中]给定MIME类型,返回特定于AXIS的类型QName。

代码示例

代码示例来源:origin: axis/axis

/**
 * Get the QName that could be used in the xsi:type
 * when serializing an object for this parameter/return
 *
 * @param param is a parameter
 * @return the QName of the parameter's xsi type
 */
public static QName getXSIType(Parameter param) {
  if (param.getMIMEInfo() != null) {
    return getMIMETypeQName(param.getMIMEInfo().getType());
  }
  return getXSIType(param.getType());
}    // getXSIType

代码示例来源:origin: org.apache.axis/axis

/**
 * Get the QName that could be used in the xsi:type
 * when serializing an object for this parameter/return
 *
 * @param param is a parameter
 * @return the QName of the parameter's xsi type
 */
public static QName getXSIType(Parameter param) {
  if (param.getMIMEInfo() != null) {
    return getMIMETypeQName(param.getMIMEInfo().getType());
  }
  return getXSIType(param.getType());
}    // getXSIType

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

/**
 * Get the QName that could be used in the xsi:type
 * when serializing an object for this parameter/return
 *
 * @param param is a parameter
 * @return the QName of the parameter's xsi type
 */
public static QName getXSIType(Parameter param) {
  if (param.getMIMEInfo() != null) {
    return getMIMETypeQName(param.getMIMEInfo().getType());
  }
  return getXSIType(param.getType());
}    // getXSIType

相关文章