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

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

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

SimpleValue.setStringValue介绍

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

代码示例

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

/**
 * Appends the value as the last "scope" element
 */
public void addScope(java.lang.String scope)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SCOPE$2);
    target.setStringValue(scope);
  }
}

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

/**
 * Appends the value as the last "axisName" element
 */
public void addAxisName(java.lang.String axisName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AXISNAME$4);
    target.setStringValue(axisName);
  }
}

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

/**
 * Appends the value as the last "scope" element
 */
public void addScope(java.lang.String scope)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SCOPE$2);
    target.setStringValue(scope);
  }
}

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

/**
 * Appends the value as the last "ResourceID" element
 */
public void addResourceID(java.lang.String resourceID)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCEID$0);
    target.setStringValue(resourceID);
  }
}

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

/**
 * Appends the value as the last "AvailableCRS" element
 */
public void addAvailableCRS(java.lang.String availableCRS)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AVAILABLECRS$4);
    target.setStringValue(availableCRS);
  }
}

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

/**
 * Appends the value as the last "Facsimile" element
 */
public void addFacsimile(java.lang.String facsimile)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FACSIMILE$2);
    target.setStringValue(facsimile);
  }
}

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

/**
 * Appends the value as the last "ServiceTypeVersion" element
 */
public void addServiceTypeVersion(java.lang.String serviceTypeVersion)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SERVICETYPEVERSION$2);
    target.setStringValue(serviceTypeVersion);
  }
}

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

/**
 * Appends the value as the last "Profile" element
 */
public void addProfile(java.lang.String profile)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(PROFILE$4);
    target.setStringValue(profile);
  }
}

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

/**
 * Appends the value as the last "scope" element
 */
public void addScope(java.lang.String scope)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SCOPE$2);
    target.setStringValue(scope);
  }
}

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

/**
 * Appends the value as the last "OutputFormat" element
 */
public void addOutputFormat(java.lang.String outputFormat)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OUTPUTFORMAT$2);
    target.setStringValue(outputFormat);
  }
}

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

/**
 * Appends the value as the last "topicExpressionDialect" element
 */
public void addTopicExpressionDialect(java.lang.String topicExpressionDialect)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TOPICEXPRESSIONDIALECT$0);
    target.setStringValue(topicExpressionDialect);
  }
}

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

/**
 * Appends the value as the last "observableProperty" element
 */
public void addObservableProperty(java.lang.String observableProperty)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OBSERVABLEPROPERTY$4);
    target.setStringValue(observableProperty);
  }
}

代码示例来源:origin: org.apache.airavata/airavata-gfac-schema-utils

/**
 * Appends the value as the last "imageID" element
 */
public void addImageID(java.lang.String imageID)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IMAGEID$0);
    target.setStringValue(imageID);
  }
}

代码示例来源:origin: org.apache.airavata/airavata-gfac-schema-utils

/**
 * Appends the value as the last "globusGateKeeperEndPoint" element
 */
public void addGlobusGateKeeperEndPoint(java.lang.String globusGateKeeperEndPoint)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GLOBUSGATEKEEPERENDPOINT$2);
    target.setStringValue(globusGateKeeperEndPoint);
  }
}

代码示例来源:origin: org.apache.airavata/airavata-gfac-schema-utils

/**
 * Appends the value as the last "gridFTPEndPoint" element
 */
public void addGridFTPEndPoint(java.lang.String gridFTPEndPoint)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GRIDFTPENDPOINT$4);
    target.setStringValue(gridFTPEndPoint);
  }
}

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

/**
 * Appends the value as the last "voice" element
 */
public void addVoice(java.lang.String voice)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VOICE$0);
    target.setStringValue(voice);
  }
}

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

/**
 * Appends the value as the last "keyword" element
 */
public void addKeyword(java.lang.String keyword)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(KEYWORD$0);
    target.setStringValue(keyword);
  }
}

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

/**
 * Appends the value as the last "procedure" element
 */
public void addProcedure(java.lang.String procedure)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(PROCEDURE$0);
    target.setStringValue(procedure);
  }
}

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

/**
 * Appends the value as the last "observedProperty" element
 */
public void addObservedProperty(java.lang.String observedProperty)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OBSERVEDPROPERTY$2);
    target.setStringValue(observedProperty);
  }
}

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

/**
 * Appends the value as the last "observation" element
 */
public void addObservation(java.lang.String observation)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OBSERVATION$0);
    target.setStringValue(observation);
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法