This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CollectionsUtils { | |
public static void remove(List<?> items, Filter<Object> filter) { | |
Iterator<?> iterator = items.iterator(); | |
while (iterator.hasNext()) { | |
if (filter.shouldRemove(iterator.next())) { | |
iterator.remove(); | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Filter<T> { | |
public boolean shouldRemove(T t); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<Map.Entry<String, Object>> list = new ArrayList<Map.Entry<String, Object>>(entries); | |
//remove negative values | |
CollectionsUtils.remove(list, new Filter<Object>() { | |
public boolean shouldRemove(Object o1) { | |
Map.Entry<String, Object> entry = (Map.Entry<String, Object>)o1; | |
Double d1 = Double.parseDouble(entry.getValue().toString()); | |
return d1<0.25; | |
} | |
}); |