feat: intent task

This commit is contained in:
hyb1996
2018-09-28 00:56:34 +08:00
parent cf16739e75
commit 025e594a01
29 changed files with 1008 additions and 239 deletions

View File

@@ -0,0 +1,11 @@
package com.stardust.util;
import java.util.Map;
import java.util.Set;
public interface BiMap<K, V> extends Map<K, V> {
K getKey(V value);
Set<V> valueSet();
}

View File

@@ -0,0 +1,206 @@
package com.stardust.util;
import android.os.Build;
import android.support.annotation.NonNull;
import android.support.annotation.RequiresApi;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Function;
public class BiMaps {
public static <K, V> BiMap<K, V> make(Map<K, V> keyToValue, Map<V, K> valueToKey) {
return new BiMapImpl<>(keyToValue, valueToKey);
}
public static <K, V> BiMapBuilder<K, V> newBuilder() {
return new BiMapBuilder<>();
}
public static class BiMapBuilder<K, V> {
private final BiMap<K, V> mBiMap = make(new HashMap<K, V>(), new HashMap<V, K>());
public BiMapBuilder<K, V> put(K key, V value) {
mBiMap.put(key, value);
return this;
}
public BiMap<K, V> build() {
return mBiMap;
}
}
private static class BiMapImpl<K, V> implements BiMap<K, V> {
private final Map<K, V> mKVMap;
private final Map<V, K> mVKMap;
private BiMapImpl(Map<K, V> kvMap, Map<V, K> vkMap) {
mKVMap = kvMap;
mVKMap = vkMap;
}
@Override
public int size() {
return mKVMap.size();
}
@Override
public boolean isEmpty() {
return mKVMap.isEmpty();
}
@Override
public boolean containsKey(Object key) {
return mKVMap.containsKey(key);
}
@Override
public boolean containsValue(Object value) {
return mVKMap.containsKey(value);
}
@Override
public V get(Object key) {
return mKVMap.get(key);
}
@Override
public V put(K key, V value) {
V put = mKVMap.put(key, value);
mVKMap.put(value, key);
return put;
}
@Override
public V remove(Object key) {
V remove = mKVMap.remove(key);
if (remove != null) {
mVKMap.remove(key);
}
return remove;
}
@Override
public void putAll(@NonNull Map<? extends K, ? extends V> m) {
mKVMap.putAll(m);
}
@Override
public void clear() {
mKVMap.clear();
mVKMap.clear();
}
@NonNull
@Override
public Set<K> keySet() {
return mKVMap.keySet();
}
@Override
public K getKey(V value) {
return mVKMap.get(value);
}
@Override
public Set<V> valueSet() {
return mVKMap.keySet();
}
@NonNull
@Override
public Collection<V> values() {
return mKVMap.values();
}
@NonNull
@Override
public Set<Entry<K, V>> entrySet() {
return mKVMap.entrySet();
}
@Override
public boolean equals(Object o) {
return mKVMap.equals(o);
}
@Override
public int hashCode() {
return mKVMap.hashCode();
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V getOrDefault(Object key, V defaultValue) {
return mKVMap.getOrDefault(key, defaultValue);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public void forEach(BiConsumer<? super K, ? super V> action) {
mKVMap.forEach(action);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
mKVMap.replaceAll(function);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V putIfAbsent(K key, V value) {
return mKVMap.putIfAbsent(key, value);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public boolean remove(Object key, Object value) {
return mKVMap.remove(key, value);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public boolean replace(K key, V oldValue, V newValue) {
return mKVMap.replace(key, oldValue, newValue);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V replace(K key, V value) {
return mKVMap.replace(key, value);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) {
return mKVMap.computeIfAbsent(key, mappingFunction);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V computeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
return mKVMap.computeIfPresent(key, remappingFunction);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
return mKVMap.compute(key, remappingFunction);
}
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public V merge(K key, V value, BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
return mKVMap.merge(key, value, remappingFunction);
}
}
}