org.reflections.Store.getAllIncluding()方法的使用及代码示例

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

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

Store.getAllIncluding介绍

[英]recursively get the values stored for the given index and keys, including keys
[中]递归地获取为给定索引和键(包括键)存储的值

代码示例

代码示例来源:origin: ronmamo/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, including keys */
private Iterable<String> getAllIncluding(String index, Iterable<String> keys, IterableChain<String> result) {
  result.addAll(keys);
  for (String key : keys) {
    Iterable<String> values = get(index, key);
    if (values.iterator().hasNext()) {
      getAllIncluding(index, values, result);
    }
  }
  return result;
}

代码示例来源:origin: org.reflections/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, including keys */
private Iterable<String> getAllIncluding(String index, Iterable<String> keys, IterableChain<String> result) {
  result.addAll(keys);
  for (String key : keys) {
    Iterable<String> values = get(index, key);
    if (values.iterator().hasNext()) {
      getAllIncluding(index, values, result);
    }
  }
  return result;
}

代码示例来源:origin: ronmamo/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, String key) {
  return getAllIncluding(index, get(index, key), new IterableChain<String>());
}

代码示例来源:origin: ronmamo/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, Iterable<String> keys) {
  return getAllIncluding(index, get(index, keys), new IterableChain<String>());
}

代码示例来源:origin: org.reflections/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, String key) {
  return getAllIncluding(index, get(index, key), new IterableChain<String>());
}

代码示例来源:origin: org.reflections/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, Iterable<String> keys) {
  return getAllIncluding(index, get(index, keys), new IterableChain<String>());
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, including keys */
private Iterable<String> getAllIncluding(String index, Iterable<String> keys, IterableChain<String> result) {
  result.addAll(keys);
  for (String key : keys) {
    Iterable<String> values = get(index, key);
    if (values.iterator().hasNext()) {
      getAllIncluding(index, values, result);
    }
  }
  return result;
}

代码示例来源:origin: ai.h2o/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, including keys */
private Iterable<String> getAllIncluding(String index, Iterable<String> keys, IterableChain<String> result) {
  result.addAll(keys);
  for (String key : keys) {
    Iterable<String> values = get(index, key);
    if (values.iterator().hasNext()) {
      getAllIncluding(index, values, result);
    }
  }
  return result;
}

代码示例来源:origin: org.rapidpm/rapidpm-dependencies-core-reflections

private Iterable<String> getAllIncluding(String index , Iterable<String> keys , IterableChain<String> result) {
 result.addAll(keys);
 for (String key : keys) {
  Iterable<String> values = get(index , key);
  if (values.iterator().hasNext()) {
   getAllIncluding(index , values , result);
  }
 }
 return result;
}

代码示例来源:origin: ai.h2o/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, String key) {
  return getAllIncluding(index, get(index, key), new IterableChain<String>());
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, Iterable<String> keys) {
  return getAllIncluding(index, get(index, keys), new IterableChain<String>());
}

代码示例来源:origin: ai.h2o/reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, Iterable<String> keys) {
  return getAllIncluding(index, get(index, keys), new IterableChain<String>());
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.reflections

/** recursively get the values stored for the given {@code index} and {@code keys}, not including keys */
public Iterable<String> getAll(String index, String key) {
  return getAllIncluding(index, get(index, key), new IterableChain<String>());
}

代码示例来源:origin: org.rapidpm/rapidpm-dependencies-core-reflections

public Iterable<String> getAll(String index , Iterable<String> keys) {
 return getAllIncluding(index , get(index , keys) , new IterableChain<>());
}

代码示例来源:origin: org.rapidpm/rapidpm-dependencies-core-reflections

public Iterable<String> getAll(String index , String key) {
 return getAllIncluding(index , get(index , key) , new IterableChain<>());
}

相关文章