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


Java Sets.newLinkedHashSetWithExpectedSize方法代码示例

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


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

示例1: registerDescription

import com.google.common.collect.Sets; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
protected void registerDescription(final IResourceDescription description,
		final Map<QualifiedName, Object> target) {

	for (final IEObjectDescription object : description.getExportedObjects()) {
		final QualifiedName lowerCase = object.getName().toLowerCase();
		final Object existing = target.put(lowerCase, description);
		if (existing != null && existing != description) {
			Set<IResourceDescription> set = null;
			if (existing instanceof IResourceDescription) {
				// The linked hash set is the difference comparing to the super class.
				set = Sets.newLinkedHashSetWithExpectedSize(2);
				set.add((IResourceDescription) existing);
			} else {
				set = (Set<IResourceDescription>) existing;
			}
			set.add(description);
			target.put(lowerCase, set);
		}
	}
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:23,代码来源:OrderedResourceDescriptionsData.java

示例2: map

import com.google.common.collect.Sets; //导入方法依赖的package包/类
private static Set<IvyArtifactName> map(List<Artifact> dependencyArtifacts) {
    if (dependencyArtifacts.isEmpty()) {
        return ImmutableSet.of();
    }
    Set<IvyArtifactName> result = Sets.newLinkedHashSetWithExpectedSize(dependencyArtifacts.size());
    for (Artifact artifact : dependencyArtifacts) {
        result.add(artifact.getArtifactName());
    }
    return result;
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:11,代码来源:DefaultDependencyMetadata.java

示例3: allAnnotatedElements

import com.google.common.collect.Sets; //导入方法依赖的package包/类
private Set<Element> allAnnotatedElements() {
  Set<Element> elements = Sets.newLinkedHashSetWithExpectedSize(100);
  for (TypeElement annotation : annotations()) {
    Set<? extends Element> annotatedElements = round().getElementsAnnotatedWith(annotation);
    checkAnnotation(annotation, annotatedElements);
    elements.addAll(annotatedElements);
  }
  return elements;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:10,代码来源:Round.java


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