org.apache.openjpa.lib.conf.Value.setLoadKey()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(89)

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

Value.setLoadKey介绍

[英]Sets key under which this value was loaded.
[中]设置加载此值的键。

代码示例

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

/**
 * Look up the given value, testing all available prefixes.
 */
private Object get(Map map, Value val, boolean setLoadKey) {
  String key = ProductDerivations.getConfigurationKey(
    val.getProperty(), map);
  if (map.containsKey(key) && setLoadKey)
    val.setLoadKey(key);
  return map.get(key);
}

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

/**
 * Look up the given value, testing all available prefixes and all possible
 * property names. Detects if the given map contains multiple keys that
 * are equivalent names for the given value. 
 */
private Object findValue(Map map, Value val) {
  Object result = null;
  List<String> partialKeys = val.getPropertyKeys();
  for (String partialKey : partialKeys) {
    String key = ProductDerivations.getConfigurationKey(
      partialKey, map);
    if (map.containsKey(key)) {
      // do not return immediately. Looping through all equivalent
      // property names will detect if the Map contains multiple keys
      // that are equivalent as it tries to set load key.
      val.setLoadKey(key);
      result = map.get(key);
    }
  }
  return result;
}

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

/**
 * Look up the given value, testing all available prefixes and all possible
 * property names. Detects if the given map contains multiple keys that
 * are equivalent names for the given value. 
 */
private Object findValue(Map map, Value val) {
  Object result = null;
  List<String> partialKeys = val.getPropertyKeys();
  for (String partialKey : partialKeys) {
    String key = ProductDerivations.getConfigurationKey(
      partialKey, map);
    if (map.containsKey(key)) {
      // do not return immediately. Looping through all equivalent
      // property names will detect if the Map contains multiple keys
      // that are equivalent as it tries to set load key.
      val.setLoadKey(key);
      result = map.get(key);
    }
  }
  return result;
}

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

/**
 * Look up the given value, testing all available prefixes and all possible
 * property names. Detects if the given map contains multiple keys that
 * are equivalent names for the given value. 
 */
private Object findValue(Map map, Value val) {
  Object result = null;
  List<String> partialKeys = val.getPropertyKeys();
  for (String partialKey : partialKeys) {
    String key = ProductDerivations.getConfigurationKey(
      partialKey, map);
    if (map.containsKey(key)) {
      // do not return immediately. Looping through all equivalent
      // property names will detect if the Map contains multiple keys
      // that are equivalent as it tries to set load key.
      val.setLoadKey(key);
      result = map.get(key);
    }
  }
  return result;
}

相关文章