mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
39 lines
1.1 KiB
Java
39 lines
1.1 KiB
Java
package com.google.common.collect;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
class ImmutableEntry<K, V> extends AbstractMapEntry<K, V> implements Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
|
|
@ParametricNullness
|
|
final K key;
|
|
|
|
@ParametricNullness
|
|
final V value;
|
|
|
|
@Override // com.google.common.collect.AbstractMapEntry, java.util.Map.Entry
|
|
@ParametricNullness
|
|
public final K getKey() {
|
|
return this.key;
|
|
}
|
|
|
|
@Override // com.google.common.collect.AbstractMapEntry, java.util.Map.Entry
|
|
@ParametricNullness
|
|
public final V getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public ImmutableEntry(@ParametricNullness K k, @ParametricNullness V v) {
|
|
this.key = k;
|
|
this.value = v;
|
|
}
|
|
|
|
@Override // com.google.common.collect.AbstractMapEntry, java.util.Map.Entry
|
|
@ParametricNullness
|
|
public final V setValue(@ParametricNullness V v) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|