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

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

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

SimpleValue.getStringValue介绍

[英]Returns the value as a String.
[中]

代码示例

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

/**
 * Gets ith "scope" element
 */
public java.lang.String getScopeArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SCOPE$2, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "axisName" element
 */
public java.lang.String getAxisNameArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AXISNAME$4, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "scope" element
 */
public java.lang.String getScopeArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SCOPE$2, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "ElectronicMailAddress" element
 */
public java.lang.String getElectronicMailAddressArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ELECTRONICMAILADDRESS$10, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "OutputFormat" element
 */
public java.lang.String getOutputFormatArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OUTPUTFORMAT$2, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "Version" element
 */
public java.lang.String getVersionArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VERSION$0, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "Profile" element
 */
public java.lang.String getProfileArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PROFILE$4, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets ith "AccessConstraints" element
 */
public java.lang.String getAccessConstraintsArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ACCESSCONSTRAINTS$8, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "operationVersion" element
 */
public java.lang.String getOperationVersion()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OPERATIONVERSION$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "remarks" element
 */
public java.lang.String getRemarks()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REMARKS$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "reversePropertyName" element
 */
public java.lang.String getReversePropertyName()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REVERSEPROPERTYNAME$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "operationVersion" element
 */
public java.lang.String getOperationVersion()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OPERATIONVERSION$4, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "fileReference" element
 */
public java.lang.String getFileReference()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FILEREFERENCE$4, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "mimeType" element
 */
public java.lang.String getMimeType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MIMETYPE$8, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "scope" element
 */
public java.lang.String getScope()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SCOPE$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "defaultCodeSpace" element
 */
public java.lang.String getDefaultCodeSpace()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DEFAULTCODESPACE$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "ruleDefinition" element
 */
public java.lang.String getRuleDefinition()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RULEDEFINITION$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "associationName" element
 */
public java.lang.String getAssociationName()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ASSOCIATIONNAME$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "compression" element
 */
public java.lang.String getCompression()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(COMPRESSION$10, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

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

/**
 * Gets the "operationVersion" element
 */
public java.lang.String getOperationVersion()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OPERATIONVERSION$0, 0);
    if (target == null)
    {
      return null;
    }
    return target.getStringValue();
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法