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

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

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

SimpleValue.getLongValue介绍

[英]Returns the value as a long.
[中]以long形式返回值。

代码示例

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

public long getLongValue()
{
  return ((SimpleValue)underlyingXmlObject()).getLongValue();
}

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

public long getLongValue()
  { check_dated(); return _value == null ? 0 : ((SimpleValue)_value).getLongValue(); }

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

return new Long(base.getLongValue());

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

public long getLongValue()
{
  return ((SimpleValue)underlyingXmlObject()).getLongValue();
}

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

public long getLongValue()
{
  return ((SimpleValue)underlyingXmlObject()).getLongValue();
}

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

public long getLongValue()
  { check_dated(); return _value == null ? 0 : ((SimpleValue)_value).getLongValue(); }

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

public long getLongValue()
  { check_dated(); return _value == null ? 0 : ((SimpleValue)_value).getLongValue(); }

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

/**
 * Gets array of all "restoredIID" elements
 */
public long[] getRestoredIIDArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(RESTOREDIID$0, targetList);
    long[] result = new long[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getLongValue();
    return result;
  }
}

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

/**
 * Gets array of all "upgradeInstance" elements
 */
public long[] getUpgradeInstanceArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(UPGRADEINSTANCE$0, targetList);
    long[] result = new long[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getLongValue();
    return result;
  }
}

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

/**
 * Gets array of all "replaceInstance" elements
 */
public long[] getReplaceInstanceArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(REPLACEINSTANCE$2, targetList);
    long[] result = new long[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getLongValue();
    return result;
  }
}

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

/**
 * Gets array of all "iid" elements
 */
public long[] getIidArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(IID$0, targetList);
    long[] result = new long[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getLongValue();
    return result;
  }
}

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

/**
 * Gets ith "upgradeInstance" element
 */
public long getUpgradeInstanceArray(int i)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(UPGRADEINSTANCE$0, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    return target.getLongValue();
  }
}

代码示例来源:origin: org.apache.airavata/airavata-workflow-tracking

/**
 * Gets the "durationInMillis" element
 */
public long getDurationInMillis()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DURATIONINMILLIS$0, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

代码示例来源:origin: org.duracloud/chunk

/**
 * Gets the "byteSize" element
 */
public long getByteSize()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BYTESIZE$2, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

代码示例来源:origin: org.duracloud/chunk

/**
 * Gets the "byteSize" element
 */
public long getByteSize()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BYTESIZE$0, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

代码示例来源:origin: org.apache.airavata/airavata-workflow-tracking

/**
 * Gets the "sizeInBytes" element
 */
public long getSizeInBytes()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SIZEINBYTES$4, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

代码示例来源:origin: org.apache.airavata/airavata-workflow-tracking

/**
 * Gets the "durationInMillis" element
 */
public long getDurationInMillis()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DURATIONINMILLIS$8, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

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

/**
 * Gets the "root-scope-id" element
 */
public long getRootScopeId()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ROOTSCOPEID$58, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

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

/**
 * Gets the "version" element
 */
public long getVersion()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VERSION$4, 0);
    if (target == null)
    {
      return 0L;
    }
    return target.getLongValue();
  }
}

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

long l = ((SimpleValue)v).getLongValue();
set_prepare();
set_long(l);

相关文章

微信公众号

最新文章

更多

SimpleValue类方法