All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.psjava.ds.map.ValuesInMap Maven / Gradle / Ivy

package org.psjava.ds.map;

import org.psjava.util.ConvertedDataIterable;
import org.psjava.util.DataConverter;

public class ValuesInMap {
	public static  Iterable get(Map map) {
		return ConvertedDataIterable.create(map, new DataConverter, V>() {
			@Override
			public V convert(MapEntry v) {
				return v.getValue();
			}
		});
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy