に「変換」を適用しようとしていますList <Map <String, String>>
。Function.apply
" " メソッドでリスト内の現在のアイテムのインデックスを取得することは可能ですか?
Lists.transform(data, new Function<Map<String, String>, Map<String, String>>() {
private static int index = 0;
@Override
public Map<String, String> apply(Map<String, String> from) {
from.put(key, value); // need to get index
return from;
}
});