FluentIterable:如何保持相同的输入列表顺序

时间:2016-11-03 10:28:37

标签: java

Set<TypeOne> result = new LinkedHashSet<>(FluentIterable
                           .from(inputListTypeTwo)
                           .transform(new Function<TypeTwo, TypeOne>() {

            @Override
            public TypeOne apply(TypeTwo element) {
                return new TypeOne(element);
            }
      }).toList());

我在结果中得到了不同的顺序!?

Guava 14.0.1和Java 7

0 个答案:

没有答案