AvatarBuilderStyle.java
891 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
43
package com.bitstrips.imoji.abv3;
public enum AvatarBuilderStyle
{
private final int a;
private final String b;
private AvatarBuilderStyle(int paramInt, String paramString)
{
this.a = paramInt;
this.b = paramString;
}
public static AvatarBuilderStyle fromValue(int paramInt)
{
if (paramInt == STYLE_BITSTRIPS.getValue()) {
return STYLE_BITSTRIPS;
}
if (paramInt == STYLE_BITMOJI.getValue()) {
return STYLE_BITMOJI;
}
if (paramInt == STYLE_CM.getValue()) {
return STYLE_CM;
}
return null;
}
public final String getMetricsLabel()
{
return this.b;
}
public final int getValue()
{
return this.a;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/abv3/AvatarBuilderStyle.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/