gpt4 book ai didi

org.eclipse.persistence.oxm.XMLMarshaller.setFragment()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 01:11:40 28 4
gpt4 key购买 nike

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

XMLMarshaller.setFragment介绍

[英]PUBLIC: Set if this should marshal to a fragment. If true an XML header string is not written out.
[中]PUBLIC:设置是否应该封送到片段。如果为true,则不会写出XML头字符串。

代码示例

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

public void setProperty(String propName, Object value) throws PropertyException {
  if (null == propName) {
    throw new IllegalArgumentException(propName);
  }
  String valueString = (value == null) ? null : value.toString();
  if (propName.equals(Marshaller.JAXB_ENCODING)) {
    this.xmlBinder.getMarshaller().setEncoding(valueString);
    return;
  }
  if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
    this.xmlBinder.getMarshaller().setFormattedOutput(Boolean.valueOf(valueString).booleanValue());
    return;
  }
  if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
    this.xmlBinder.getMarshaller().setFragment(Boolean.valueOf(valueString).booleanValue());
    return;
  }
  if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
    this.xmlBinder.getMarshaller().setSchemaLocation(valueString);
    return;
  }
  if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
    this.xmlBinder.getMarshaller().setNoNamespaceSchemaLocation(valueString);
    return;
  }
  throw new PropertyException(propName);
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy

@Override
public void setProperty(String propName, Object value) throws PropertyException {
  if (null == propName) {
    throw new IllegalArgumentException((String)null);
  }
  String valueString = (value == null) ? null : value.toString();
  if (propName.equals(Marshaller.JAXB_ENCODING)) {
    this.xmlBinder.getMarshaller().setEncoding(valueString);
    return;
  }
  if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
    this.xmlBinder.getMarshaller().setFormattedOutput(Boolean.valueOf(valueString).booleanValue());
    return;
  }
  if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
    this.xmlBinder.getMarshaller().setFragment(Boolean.valueOf(valueString).booleanValue());
    return;
  }
  if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
    this.xmlBinder.getMarshaller().setSchemaLocation(valueString);
    return;
  }
  if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
    this.xmlBinder.getMarshaller().setNoNamespaceSchemaLocation(valueString);
    return;
  }
  throw new PropertyException(propName);
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy

xmlMarshaller.setFragment(fragment.booleanValue());
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
  if(value == null){
  xmlMarshaller.setFragment(fragment.booleanValue());
} else if (XML_HEADERS.equals(key)) {
  xmlMarshaller.setXmlHeader((String) value);

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

xmlMarshaller.setFragment(fragment.booleanValue());
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
  if(value == null){
  xmlMarshaller.setFragment(fragment.booleanValue());
} else if (XML_HEADERS.equals(key)) {
  xmlMarshaller.setXmlHeader((String) value);

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());
WriterRecord writerRecord;
if(anXMLMarshaller.isFormattedOutput()) {

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());
WriterRecord writerRecord;
if(anXMLMarshaller.isFormattedOutput()) {

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo

anXMLMarshaller.setFragment(!xmlDocument.isXMLDeclaration());

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com