本文整理了Java中org.reflections.Store.getAllIncluding()
方法的一些代码示例,展示了Store.getAllIncluding()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Store.getAllIncluding()
方法的具体详情如下:
包路径:org.reflections.Store
类名称: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<>());
}
内容来源于网络,如有侵权,请联系作者删除!