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

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

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

SimpleValue.setDoubleValue介绍

[英]Sets the value as a double.
[中]将该值设置为双精度。

代码示例

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

public void setDoubleValue(double v)
{
  ((SimpleValue)underlyingXmlObject()).setDoubleValue(v);
}

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

public void setDoubleValue(double v)
{
  ((SimpleValue)underlyingXmlObject()).setDoubleValue(v);
}

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

public void setDoubleValue(double v)
{
  ((SimpleValue)underlyingXmlObject()).setDoubleValue(v);
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$10, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Inserts the value as the ith "value" element
 */
public void insertValue(int i, double value)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(VALUE$0, i);
    target.setDoubleValue(value);
  }
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$6, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "value" element
 */
public void addValue(double value)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VALUE$0);
    target.setDoubleValue(value);
  }
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$6, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$10);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Inserts the value as the ith "value" element
 */
public void insertValue(int i, double value)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(VALUE$0, i);
    target.setDoubleValue(value);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$6);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$6, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$6);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$10, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "value" element
 */
public void addValue(double value)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VALUE$0);
    target.setDoubleValue(value);
  }
}

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

/**
 * Inserts the value as the ith "bulge" element
 */
public void insertBulge(int i, double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(BULGE$6, i);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$6);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$10);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Appends the value as the last "bulge" element
 */
public void addBulge(double bulge)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BULGE$6);
    target.setDoubleValue(bulge);
  }
}

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

/**
 * Sets the "Real" element
 */
public void setReal(double real)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REAL$0, 0);
    if (target == null)
    {
      target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(REAL$0);
    }
    target.setDoubleValue(real);
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法