当前位置: 首页>>代码示例>>Java>>正文


Java ImmutableMultimap.of方法代码示例

本文整理汇总了Java中com.google.common.collect.ImmutableMultimap.of方法的典型用法代码示例。如果您正苦于以下问题:Java ImmutableMultimap.of方法的具体用法?Java ImmutableMultimap.of怎么用?Java ImmutableMultimap.of使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.common.collect.ImmutableMultimap的用法示例。


在下文中一共展示了ImmutableMultimap.of方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: combine

import com.google.common.collect.ImmutableMultimap; //导入方法依赖的package包/类
public static <K, V> Multimap<K, V> combine(Iterable<Multimap<K, V>> maps) {
    Multimap<K, V> singleton = null;
    ImmutableMultimap.Builder<K, V> builder = null;
    for(Multimap<K, V> map : maps) {
        if(!map.isEmpty()) {
            if(singleton == null) {
                singleton = map;
            } else {
                if(builder == null) {
                    builder = ImmutableMultimap.builder();
                }
                builder.putAll(singleton);
                builder.putAll(map);
            }
        }
    }

    if(builder != null) {
        return builder.build();
    } else if(singleton != null) {
        return singleton;
    } else {
        return ImmutableMultimap.of();
    }
}
 
开发者ID:OvercastNetwork,项目名称:ProjectAres,代码行数:26,代码来源:MapUtils.java

示例2: getCollaboratorsForItemIds

import com.google.common.collect.ImmutableMultimap; //导入方法依赖的package包/类
@Override
@Transactional(propagation = Propagation.MANDATORY)
public Multimap<Long, String> getCollaboratorsForItemIds(Collection<Long> itemIds)
{
	if( itemIds.isEmpty() )
	{
		return ImmutableMultimap.of();
	}
	List<Object[]> attachments = getHibernateTemplate().findByNamedParam(
		"select c, i.id from Item i join i.collaborators c where i.id in (:items)", "items", itemIds);
	ListMultimap<Long, String> multiMap = ArrayListMultimap.create();
	for( Object[] attachmentRow : attachments )
	{
		multiMap.put((Long) attachmentRow[1], (String) attachmentRow[0]);
	}
	return multiMap;
}
 
开发者ID:equella,项目名称:Equella,代码行数:18,代码来源:ItemDaoImpl.java

示例3: pathPropertiesOfAsMultimap

import com.google.common.collect.ImmutableMultimap; //导入方法依赖的package包/类
public static ImmutableMultimap<String, Object> pathPropertiesOfAsMultimap(Blob blob, Function<String, Collection<String>> pathPropertyMapping, Path path, PropertyCollectionResolver propertyResolver) {
	ImmutableList<String> pathProperties = path.propertyNamesWithoutPage();
	
	ImmutableMap<String, ImmutableSet<?>> blopPathPropertyMap = pathProperties.stream()
		.map(p -> Pair.<String, ImmutableSet<?>>of(p, propertyOf(blob, pathPropertyMapping, propertyResolver, p)))
		.filter(pair -> !pair.b().isEmpty())
		.collect(ImmutableMap.toImmutableMap(Pair::a, Pair::b));
	
	if (blopPathPropertyMap.keySet().size()<pathProperties.size()) {
		return ImmutableMultimap.of();
	}
	
	Builder<String, Object> multiMapBuilder = ImmutableMultimap.builder();
	
	blopPathPropertyMap.forEach((key, values) -> {
		multiMapBuilder.putAll(key, values);
	});
	
	return multiMapBuilder.build();
}
 
开发者ID:flapdoodle-oss,项目名称:de.flapdoodle.solid,代码行数:21,代码来源:Blobs.java

示例4: generateImmutableMultimap

import com.google.common.collect.ImmutableMultimap; //导入方法依赖的package包/类
@Generates private static <K, V> ImmutableMultimap<K, V> generateImmutableMultimap(
    K key, V value) {
  return ImmutableMultimap.of(key, value);
}
 
开发者ID:zugzug90,项目名称:guava-mock,代码行数:5,代码来源:FreshValueGenerator.java

示例5: ListenerMapGeneration

import com.google.common.collect.ImmutableMultimap; //导入方法依赖的package包/类
ListenerMapGeneration() {
    typeToListeners = ImmutableMultimap.of();
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:4,代码来源:ListenerMapGeneration.java


注:本文中的com.google.common.collect.ImmutableMultimap.of方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。