gpt4 book ai didi

org.apache.openjpa.persistence.XMLPersistenceMetaDataSerializer.setMode()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 06:49:40 26 4
gpt4 key购买 nike

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

XMLPersistenceMetaDataSerializer.setMode介绍

[英]The serialization mode according to the expected document type. The mode constants act as bit flags, and therefore can be combined.
[中]根据预期的文档类型选择序列化模式。模式常数充当位标志,因此可以组合。

代码示例

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

/**
 * The serialization mode according to the expected document type.
 */
public void setMode(int mode, boolean on) {
  if (mode == MODE_NONE)
    setMode(MODE_NONE);
  else if (on)
    setMode(_mode | mode);
  else
    setMode(_mode & ~mode);
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

/**
 * The serialization mode according to the expected document type.
 */
public void setMode(int mode, boolean on) {
  if (mode == MODE_NONE)
    setMode(MODE_NONE);
  else if (on)
    setMode(_mode | mode);
  else
    setMode(_mode & ~mode);
}

代码示例来源:origin: org.apache.openjpa/openjpa-persistence

/**
 * The serialization mode according to the expected document type.
 */
public void setMode(int mode, boolean on) {
  if (mode == MODE_NONE)
    setMode(MODE_NONE);
  else if (on)
    setMode(_mode | mode);
  else
    setMode(_mode & ~mode);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-persistence

/**
 * The serialization mode according to the expected document type.
 */
public void setMode(int mode, boolean on) {
  if (mode == MODE_NONE)
    setMode(MODE_NONE);
  else if (on)
    setMode(_mode | mode);
  else
    setMode(_mode & ~mode);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

/**
 * The serialization mode according to the expected document type.
 */
public void setMode(int mode, boolean on) {
  if (mode == MODE_NONE)
    setMode(MODE_NONE);
  else if (on)
    setMode(_mode | mode);
  else
    setMode(_mode & ~mode);
}

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

/**
 * Constructor. Supply configuration.
 */
public XMLPersistenceMetaDataSerializer(OpenJPAConfiguration conf) {
  _conf = conf;
  setLog(conf.getLog(OpenJPAConfiguration.LOG_METADATA));
  setMode(MODE_META | MODE_MAPPING | MODE_QUERY);
}

代码示例来源:origin: org.apache.openjpa/openjpa-persistence

/**
 * Constructor. Supply configuration.
 */
public XMLPersistenceMetaDataSerializer(OpenJPAConfiguration conf) {
  _conf = conf;
  setLog(conf.getLog(OpenJPAConfiguration.LOG_METADATA));
  setMode(MODE_META | MODE_MAPPING | MODE_QUERY);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-persistence

/**
 * Constructor. Supply configuration.
 */
public XMLPersistenceMetaDataSerializer(OpenJPAConfiguration conf) {
  _conf = conf;
  setLog(conf.getLog(OpenJPAConfiguration.LOG_METADATA));
  setMode(MODE_META | MODE_MAPPING | MODE_QUERY);
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

/**
 * Constructor. Supply configuration.
 */
public XMLPersistenceMetaDataSerializer(OpenJPAConfiguration conf) {
  _conf = conf;
  setLog(conf.getLog(OpenJPAConfiguration.LOG_METADATA));
  setMode(MODE_META | MODE_MAPPING | MODE_QUERY);
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

/**
 * Constructor. Supply configuration.
 */
public XMLPersistenceMetaDataSerializer(OpenJPAConfiguration conf) {
  _conf = conf;
  setLog(conf.getLog(OpenJPAConfiguration.LOG_METADATA));
  setMode(MODE_META | MODE_MAPPING | MODE_QUERY);
}

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