AppIndexingParams.java
2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.bitstrips.imoji.firebase;
import android.app.job.JobParameters;
import android.os.Messenger;
public class AppIndexingParams
{
private boolean a;
private boolean b;
private boolean c;
private String d;
private Messenger e;
private JobParameters f;
private AppIndexingParams(boolean paramBoolean1, boolean paramBoolean2, boolean paramBoolean3, String paramString, Messenger paramMessenger, JobParameters paramJobParameters)
{
this.a = paramBoolean1;
this.b = paramBoolean2;
this.c = paramBoolean3;
this.d = paramString;
this.e = paramMessenger;
this.f = paramJobParameters;
}
public String getIndexingReason()
{
return this.d;
}
public JobParameters getJobParameters()
{
return this.f;
}
public Messenger getMessenger()
{
return this.e;
}
public boolean isForceFlushFirebase()
{
return this.c;
}
public boolean isForceRequestAvatarInfo()
{
return this.a;
}
public boolean isForceRequestStickerPacks()
{
return this.b;
}
public static class Builder
{
private boolean a = false;
private boolean b = false;
private boolean c = false;
private String d = null;
private Messenger e = null;
private JobParameters f = null;
public AppIndexingParams build()
{
return new AppIndexingParams(this.a, this.b, this.c, this.d, this.e, this.f, (byte)0);
}
public Builder setForceFlushFirebase(boolean paramBoolean)
{
this.c = paramBoolean;
return this;
}
public Builder setForceRequestAvatarInfo(boolean paramBoolean)
{
this.a = paramBoolean;
return this;
}
public Builder setForceRequestStickerPacks(boolean paramBoolean)
{
this.b = paramBoolean;
return this;
}
public Builder setIndexingReason(String paramString)
{
this.d = paramString;
return this;
}
public Builder setJobParams(JobParameters paramJobParameters)
{
this.f = paramJobParameters;
return this;
}
public Builder setMessenger(Messenger paramMessenger)
{
this.e = paramMessenger;
return this;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/firebase/AppIndexingParams.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/