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

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

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

SimpleValue.setByteArrayValue介绍

[英]Sets the value as a byte array.
[中]将值设置为字节数组。

代码示例

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

public void setByteArrayValue(byte[] obj)
{
  ((SimpleValue)underlyingXmlObject()).setByteArrayValue(obj);
}

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

public void setByteArrayValue(byte[] obj)
{
  ((SimpleValue)underlyingXmlObject()).setByteArrayValue(obj);
}

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

public void setByteArrayValue(byte[] obj)
{
  ((SimpleValue)underlyingXmlObject()).setByteArrayValue(obj);
}

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

/**
 * Sets ith "SPKISexp" element
 */
public void setSPKISexpArray(int i, byte[] spkiSexp)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SPKISEXP$0, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    target.setByteArrayValue(spkiSexp);
  }
}

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

/**
 * Appends the value as the last "SPKISexp" element
 */
public void addSPKISexp(byte[] spkiSexp)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SPKISEXP$0);
    target.setByteArrayValue(spkiSexp);
  }
}

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

/**
 * Inserts the value as the ith "X509SKI" element
 */
public void insertX509SKI(int i, byte[] x509SKI)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509SKI$2, i);
    target.setByteArrayValue(x509SKI);
  }
}

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

/**
 * Appends the value as the last "X509SKI" element
 */
public void addX509SKI(byte[] x509SKI)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509SKI$2);
    target.setByteArrayValue(x509SKI);
  }
}

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

/**
 * Appends the value as the last "X509SKI" element
 */
public void addX509SKI(byte[] x509SKI)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509SKI$2);
    target.setByteArrayValue(x509SKI);
  }
}

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

/**
 * Inserts the value as the ith "X509Certificate" element
 */
public void insertX509Certificate(int i, byte[] x509Certificate)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509CERTIFICATE$6, i);
    target.setByteArrayValue(x509Certificate);
  }
}

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

/**
 * Appends the value as the last "X509Certificate" element
 */
public void addX509Certificate(byte[] x509Certificate)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509CERTIFICATE$6);
    target.setByteArrayValue(x509Certificate);
  }
}

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

/**
 * Appends the value as the last "X509CRL" element
 */
public void addX509CRL(byte[] x509CRL)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509CRL$8);
    target.setByteArrayValue(x509CRL);
  }
}

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

/**
 * Inserts the value as the ith "X509SKI" element
 */
public void insertX509SKI(int i, byte[] x509SKI)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509SKI$2, i);
    target.setByteArrayValue(x509SKI);
  }
}

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

/**
 * Appends the value as the last "X509CRL" element
 */
public void addX509CRL(byte[] x509CRL)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509CRL$8);
    target.setByteArrayValue(x509CRL);
  }
}

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

/**
 * Inserts the value as the ith "X509CRL" element
 */
public void insertX509CRL(int i, byte[] x509CRL)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509CRL$8, i);
    target.setByteArrayValue(x509CRL);
  }
}

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

/**
 * Appends the value as the last "SPKISexp" element
 */
public void addSPKISexp(byte[] spkiSexp)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SPKISEXP$0);
    target.setByteArrayValue(spkiSexp);
  }
}

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

/**
 * Inserts the value as the ith "SPKISexp" element
 */
public void insertSPKISexp(int i, byte[] spkiSexp)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(SPKISEXP$0, i);
    target.setByteArrayValue(spkiSexp);
  }
}

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

/**
 * Inserts the value as the ith "X509Certificate" element
 */
public void insertX509Certificate(int i, byte[] x509Certificate)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509CERTIFICATE$6, i);
    target.setByteArrayValue(x509Certificate);
  }
}

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

/**
 * Inserts the value as the ith "SPKISexp" element
 */
public void insertSPKISexp(int i, byte[] spkiSexp)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(SPKISEXP$0, i);
    target.setByteArrayValue(spkiSexp);
  }
}

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

/**
 * Appends the value as the last "X509Certificate" element
 */
public void addX509Certificate(byte[] x509Certificate)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(X509CERTIFICATE$6);
    target.setByteArrayValue(x509Certificate);
  }
}

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

/**
 * Inserts the value as the ith "X509CRL" element
 */
public void insertX509CRL(int i, byte[] x509CRL)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(X509CRL$8, i);
    target.setByteArrayValue(x509CRL);
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法