org.rx.bean.MultiValueMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.bean;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.multimap.ArrayListValuedHashMap;
import java.util.List;
public class MultiValueMap extends ArrayListValuedHashMap {
private static final long serialVersionUID = 2045827206865943227L;
public V getFirst(K key) {
List vs = get(key);
if (CollectionUtils.isEmpty(vs)) {
return null;
}
return vs.get(0);
}
}