Category.java
2.19 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.bitstrips.imoji.analytics;
import com.google.gson.annotations.SerializedName;
public enum Category
{
private final String a;
static
{
FLOATER = new Category("FLOATER", 6, "Floater");
CUSTOM_SHARE = new Category("CUSTOM_SHARE", 7, "Custom Share");
AVATAR = new Category("AVATAR", 8, "Avatar Builder");
NATIVE_AVATAR_BUILDER = new Category("NATIVE_AVATAR_BUILDER", 9, "AVATAR_BUILDER");
AVATAR_UX = new Category("AVATAR_UX", 10, "Avatar Builder UX");
RECENT = new Category("RECENT", 11, "#recent");
POPULAR = new Category("POPULAR", 12, "#popular");
PURCHASED = new Category("PURCHASED", 13, "#purchased");
SMILEY = new Category("SMILEY", 14, "#ismiley");
FROWNY = new Category("FROWNY", 15, "#ifrowny");
LOVE = new Category("LOVE", 16, "#ilove");
NUANCED = new Category("NUANCED", 17, "#inuanced");
WACKY = new Category("WACKY", 18, "#iwacky");
TEXT = new Category("TEXT", 19, "text");
CLICK = new Category("CLICK", 20, "click");
REPLY_SHARE = new Category("REPLY_SHARE", 21, "ReplyShare");
KEYBOARD_ONBOARDING = new Category("KEYBOARD_ONBOARDING", 22, "keyboard_onboarding");
WELCOME_PAGE = new Category("WELCOME_PAGE", 23, "welcome");
SIGN_UP_PAGE = new Category("SIGN_UP_PAGE", 24, "signup");
LOGIN_PAGE = new Category("LOGIN_PAGE", 25, "login");
SNAPCHAT_CONNECT_PAGE = new Category("SNAPCHAT_CONNECT_PAGE", 26, "snapchat_connect");
RESET_PASSWORD_PAGE = new Category("RESET_PASSWORD_PAGE", 27, "reset_password");
OUTFIT_BUILDER = new Category("OUTFIT_BUILDER", 28, "outfit_builder");
SETTINGS = new Category("SETTINGS", 29, "SETTINGS");
APPLICATION = new Category("APPLICATION", 30, "application");
PERFORMANCE = new Category("PERFORMANCE", 31, "performance");
BIRTHDAY = new Category("BIRTHDAY", 32, "birthday");
SNAPCHAT = new Category("SNAPCHAT", 33, "snapchat");
}
private Category(String paramString)
{
this.a = paramString;
}
public final String toString()
{
return this.a;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/analytics/Category.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/