org.apache.xmlbeans.SimpleValue.getQNameValue()方法的使用及代码示例

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

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

SimpleValue.getQNameValue介绍

[英]Returns the value as a QName.
[中]将值作为QName返回。

代码示例

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

public QName getQNameValue()
{
  return ((SimpleValue)underlyingXmlObject()).getQNameValue();
}

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

public QName getQNameValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getQNameValue(); }

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

return base.getQNameValue();

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

writeQName(((SimpleValue)value).getQNameValue());
break;

代码示例来源:origin: com.github.pjfanning/xmlbeans

public QName getQNameValue()
{
  return ((SimpleValue)underlyingXmlObject()).getQNameValue();
}

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

public QName getQNameValue()
{
  return ((SimpleValue)underlyingXmlObject()).getQNameValue();
}

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

public QName getQNameValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getQNameValue(); }

代码示例来源:origin: com.github.pjfanning/xmlbeans

public QName getQNameValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getQNameValue(); }

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v20

/**
 * Gets array of all "TypeName" elements
 */
public javax.xml.namespace.QName[] getTypeNameArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(TYPENAME$0, targetList);
    javax.xml.namespace.QName[] result = new javax.xml.namespace.QName[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getQNameValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v110

/**
 * Gets array of all "TypeName" elements
 */
public javax.xml.namespace.QName[] getTypeNameArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(TYPENAME$0, targetList);
    javax.xml.namespace.QName[] result = new javax.xml.namespace.QName[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getQNameValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wsrf-v12

/**
 * Gets array of all "ResourceProperty" elements
 */
public javax.xml.namespace.QName[] getResourcePropertyArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(RESOURCEPROPERTY$0, targetList);
    javax.xml.namespace.QName[] result = new javax.xml.namespace.QName[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getQNameValue();
    return result;
  }
}

代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas

/**
 * Gets the "processType" element
 */
public javax.xml.namespace.QName getProcessType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PROCESSTYPE$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas

/**
 * Gets the "service" element
 */
public javax.xml.namespace.QName getService()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SERVICE$2, 0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas

/**
 * Gets the "name" attribute
 */
public javax.xml.namespace.QName getName()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas

/**
 * Gets the "port-type" element
 */
public javax.xml.namespace.QName getPortType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PORTTYPE$38, 0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Gets the "supportedSensorDescription" element
 */
public javax.xml.namespace.QName getSupportedSensorDescription()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUPPORTEDSENSORDESCRIPTION$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Gets the "resultModel" element
 */
public javax.xml.namespace.QName getResultModel()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESULTMODEL$4, 0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-csw-v202

/**
 * Gets the "type" attribute
 */
public javax.xml.namespace.QName getType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(TYPE$10);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sweCommon-v100

/**
 * Gets the "xmlElement" attribute
 */
public javax.xml.namespace.QName getXmlElement()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(XMLELEMENT$0);
    if (target == null)
    {
      return null;
    }
    return target.getQNameValue();
  }
}

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

QName name = ((SimpleValue)v).getQNameValue();
set_prepare();
set_QName(name);

相关文章

微信公众号

最新文章

更多

SimpleValue类方法