HomeSort by relevance Sort by last modified time
    Searched defs:forcePut (Results 1 - 5 of 5) sorted by null

  /external/guava/src/com/google/common/collect/
BiMap.java 44 * event. To avoid this exception, call {@link #forcePut} instead.
65 V forcePut(@Nullable K key, @Nullable V value);
EnumHashBiMap.java 80 @Override public V forcePut(K key, @Nullable V value) {
81 return super.forcePut(key, value);
HashBiMap.java 86 @Override public V forcePut(@Nullable K key, @Nullable V value) {
87 return super.forcePut(key, value);
ImmutableBiMap.java 251 public V forcePut(K key, V value) {
AbstractBiMap.java 97 public V forcePut(K key, V value) {

Completed in 145 milliseconds