org.apache.openjpa.lib.util.Options.put()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(90)

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

Options.put介绍

暂无

代码示例

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

opts.put(prop, val);

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

opts.put(prop, val);

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

opts.put(prop, val);

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

opts.put(prop, val);

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

if (invalidEntries == null)
  invalidEntries = new Options();
invalidEntries.put(e.getKey(), e.getValue());

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

if (invalidEntries == null)
  invalidEntries = new Options();
invalidEntries.put(e.getKey(), e.getValue());

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

if (invalidEntries == null)
  invalidEntries = new Options();
invalidEntries.put(e.getKey(), e.getValue());

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

if (invalidEntries == null)
  invalidEntries = new Options();
invalidEntries.put(e.getKey(), e.getValue());

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

key = (String) entry.getKey();
if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

key = (String) entry.getKey();
if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

key = (String) entry.getKey();
if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

key = (String) entry.getKey();
if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

key = (String) entry.getKey();
if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

opts.put("schemas", opts.get("s"));
key = (String) entry.getKey();
if (key.startsWith("customizer.")) {
  customOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("c.")) {
  customOpts.put(key.substring(2), entry.getValue());
  itr.remove();
} else if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

opts.put("schemas", opts.get("s"));
key = (String) entry.getKey();
if (key.startsWith("customizer.")) {
  customOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("c.")) {
  customOpts.put(key.substring(2), entry.getValue());
  itr.remove();
} else if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

opts.put("schemas", opts.get("s"));
key = (String) entry.getKey();
if (key.startsWith("customizer.")) {
  customOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("c.")) {
  customOpts.put(key.substring(2), entry.getValue());
  itr.remove();
} else if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

opts.put("schemas", opts.get("s"));
key = (String) entry.getKey();
if (key.startsWith("customizer.")) {
  customOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("c.")) {
  customOpts.put(key.substring(2), entry.getValue());
  itr.remove();
} else if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

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

opts.put("schemas", opts.get("s"));
key = (String) entry.getKey();
if (key.startsWith("customizer.")) {
  customOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("c.")) {
  customOpts.put(key.substring(2), entry.getValue());
  itr.remove();
} else if (key.startsWith("codeFormat.")) {
  formatOpts.put(key.substring(11), entry.getValue());
  itr.remove();
} else if (key.startsWith("cf.")) {
  formatOpts.put(key.substring(3), entry.getValue());
  itr.remove();

相关文章