oq.java
806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import com.google.common.annotations.GwtCompatible;
import java.io.Serializable;
import javax.annotation.Nullable;
@GwtCompatible(serializable=true)
public class oq<K, V>
extends mw<K, V>
implements Serializable
{
private static final long serialVersionUID = 0L;
public final K e;
public final V f;
public oq(@Nullable K paramK, @Nullable V paramV)
{
this.e = paramK;
this.f = paramV;
}
@Nullable
public final K getKey()
{
return (K)this.e;
}
@Nullable
public final V getValue()
{
return (V)this.f;
}
public final V setValue(V paramV)
{
throw new UnsupportedOperationException();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/oq.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/