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

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

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

SimpleValue.getByteArrayValue介绍

[英]Returns the value as a byte array.
[中]以字节数组的形式返回值。

代码示例

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

public byte[] getByteArrayValue()
{
  return ((SimpleValue)underlyingXmlObject()).getByteArrayValue();
}

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

public byte[] getByteArrayValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getByteArrayValue(); }

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

return base.getByteArrayValue();

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

writeByteArray(((SimpleValue)value).getByteArrayValue());
break;

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

public byte[] getByteArrayValue()
{
  return ((SimpleValue)underlyingXmlObject()).getByteArrayValue();
}

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

public byte[] getByteArrayValue()
{
  return ((SimpleValue)underlyingXmlObject()).getByteArrayValue();
}

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

public byte[] getByteArrayValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getByteArrayValue(); }

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

public byte[] getByteArrayValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getByteArrayValue(); }

代码示例来源:origin: org.n52.security/52n-security-xb

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

代码示例来源:origin: org.n52.security/52n-security-xb

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

代码示例来源:origin: org.n52.security/52n-security-xml-w3

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

代码示例来源:origin: org.n52.security/52n-security-xml-w3

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

代码示例来源:origin: org.n52.security/52n-security-xml-w3

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

代码示例来源:origin: org.openehr.java-libs/oet-parser

/**
 * Gets the "data" element
 */
public byte[] getData()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DATA$4, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Gets the "Exponent" element
 */
public byte[] getExponent()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(EXPONENT$2, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

代码示例来源:origin: org.n52.security/52n-security-xml-w3

/**
 * Gets the "Y" element
 */
public byte[] getY()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(Y$6, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

代码示例来源:origin: org.n52.security/52n-security-xml-w3

/**
 * Gets the "J" element
 */
public byte[] getJ()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(J$8, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Gets the "Q" element
 */
public byte[] getQ()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(Q$2, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Gets the "OAEPparams" element
 */
public byte[] getOAEPparams()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OAEPPARAMS$2, 0);
    if (target == null)
    {
      return null;
    }
    return target.getByteArrayValue();
  }
}

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

byte[] byteArr = ((SimpleValue)v).getByteArrayValue();
set_prepare();
set_b64(byteArr);
byte[] byteArr = ((SimpleValue)v).getByteArrayValue();
set_prepare();
set_hex(byteArr);

相关文章

微信公众号

最新文章

更多

SimpleValue类方法