public static <T, E> T getKeyByValue(BiMap<T, E> map, E value) {
for (Map.Entry<T, E> entry : map.entrySet()) {
if (value.equals(entry.getValue())) {
return entry.getKey();
}
}
return null;
}
No comments:
Post a Comment