-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathClickRecord.java
546 lines (484 loc) · 16.1 KB
/
ClickRecord.java
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
import org.apache.avro.specific.SpecificData;
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class ClickRecord extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = 4134365027792852721L;
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"ClickRecord\",\"fields\":[{\"name\":\"session_id\",\"type\":\"string\"},{\"name\":\"browser\",\"type\":[\"string\",\"null\"]},{\"name\":\"campaign\",\"type\":[\"string\",\"null\"]},{\"name\":\"channel\",\"type\":\"string\"},{\"name\":\"referrer\",\"type\":[\"string\",\"null\"],\"default\":\"None\"},{\"name\":\"ip\",\"type\":[\"string\",\"null\"]}]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
@Deprecated public java.lang.CharSequence session_id;
@Deprecated public java.lang.CharSequence browser;
@Deprecated public java.lang.CharSequence campaign;
@Deprecated public java.lang.CharSequence channel;
@Deprecated public java.lang.CharSequence referrer;
@Deprecated public java.lang.CharSequence ip;
/**
* Default constructor. Note that this does not initialize fields
* to their default values from the schema. If that is desired then
* one should use <code>newBuilder()</code>.
*/
public ClickRecord() {}
/**
* All-args constructor.
* @param session_id The new value for session_id
* @param browser The new value for browser
* @param campaign The new value for campaign
* @param channel The new value for channel
* @param referrer The new value for referrer
* @param ip The new value for ip
*/
public ClickRecord(java.lang.CharSequence session_id, java.lang.CharSequence browser, java.lang.CharSequence campaign, java.lang.CharSequence channel, java.lang.CharSequence referrer, java.lang.CharSequence ip) {
this.session_id = session_id;
this.browser = browser;
this.campaign = campaign;
this.channel = channel;
this.referrer = referrer;
this.ip = ip;
}
public org.apache.avro.Schema getSchema() { return SCHEMA$; }
// Used by DatumWriter. Applications should not call.
public java.lang.Object get(int field$) {
switch (field$) {
case 0: return session_id;
case 1: return browser;
case 2: return campaign;
case 3: return channel;
case 4: return referrer;
case 5: return ip;
default: throw new org.apache.avro.AvroRuntimeException("Bad index");
}
}
// Used by DatumReader. Applications should not call.
@SuppressWarnings(value="unchecked")
public void put(int field$, java.lang.Object value$) {
switch (field$) {
case 0: session_id = (java.lang.CharSequence)value$; break;
case 1: browser = (java.lang.CharSequence)value$; break;
case 2: campaign = (java.lang.CharSequence)value$; break;
case 3: channel = (java.lang.CharSequence)value$; break;
case 4: referrer = (java.lang.CharSequence)value$; break;
case 5: ip = (java.lang.CharSequence)value$; break;
default: throw new org.apache.avro.AvroRuntimeException("Bad index");
}
}
/**
* Gets the value of the 'session_id' field.
* @return The value of the 'session_id' field.
*/
public java.lang.CharSequence getSessionId() {
return session_id;
}
/**
* Sets the value of the 'session_id' field.
* @param value the value to set.
*/
public void setSessionId(java.lang.CharSequence value) {
this.session_id = value;
}
/**
* Gets the value of the 'browser' field.
* @return The value of the 'browser' field.
*/
public java.lang.CharSequence getBrowser() {
return browser;
}
/**
* Sets the value of the 'browser' field.
* @param value the value to set.
*/
public void setBrowser(java.lang.CharSequence value) {
this.browser = value;
}
/**
* Gets the value of the 'campaign' field.
* @return The value of the 'campaign' field.
*/
public java.lang.CharSequence getCampaign() {
return campaign;
}
/**
* Sets the value of the 'campaign' field.
* @param value the value to set.
*/
public void setCampaign(java.lang.CharSequence value) {
this.campaign = value;
}
/**
* Gets the value of the 'channel' field.
* @return The value of the 'channel' field.
*/
public java.lang.CharSequence getChannel() {
return channel;
}
/**
* Sets the value of the 'channel' field.
* @param value the value to set.
*/
public void setChannel(java.lang.CharSequence value) {
this.channel = value;
}
/**
* Gets the value of the 'referrer' field.
* @return The value of the 'referrer' field.
*/
public java.lang.CharSequence getReferrer() {
return referrer;
}
/**
* Sets the value of the 'referrer' field.
* @param value the value to set.
*/
public void setReferrer(java.lang.CharSequence value) {
this.referrer = value;
}
/**
* Gets the value of the 'ip' field.
* @return The value of the 'ip' field.
*/
public java.lang.CharSequence getIp() {
return ip;
}
/**
* Sets the value of the 'ip' field.
* @param value the value to set.
*/
public void setIp(java.lang.CharSequence value) {
this.ip = value;
}
/**
* Creates a new ClickRecord RecordBuilder.
* @return A new ClickRecord RecordBuilder
*/
public static ClickRecord.Builder newBuilder() {
return new ClickRecord.Builder();
}
/**
* Creates a new ClickRecord RecordBuilder by copying an existing Builder.
* @param other The existing builder to copy.
* @return A new ClickRecord RecordBuilder
*/
public static ClickRecord.Builder newBuilder(ClickRecord.Builder other) {
return new ClickRecord.Builder(other);
}
/**
* Creates a new ClickRecord RecordBuilder by copying an existing ClickRecord instance.
* @param other The existing instance to copy.
* @return A new ClickRecord RecordBuilder
*/
public static ClickRecord.Builder newBuilder(ClickRecord other) {
return new ClickRecord.Builder(other);
}
/**
* RecordBuilder for ClickRecord instances.
*/
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase<ClickRecord>
implements org.apache.avro.data.RecordBuilder<ClickRecord> {
private java.lang.CharSequence session_id;
private java.lang.CharSequence browser;
private java.lang.CharSequence campaign;
private java.lang.CharSequence channel;
private java.lang.CharSequence referrer;
private java.lang.CharSequence ip;
/** Creates a new Builder */
private Builder() {
super(SCHEMA$);
}
/**
* Creates a Builder by copying an existing Builder.
* @param other The existing Builder to copy.
*/
private Builder(ClickRecord.Builder other) {
super(other);
if (isValidValue(fields()[0], other.session_id)) {
this.session_id = data().deepCopy(fields()[0].schema(), other.session_id);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.browser)) {
this.browser = data().deepCopy(fields()[1].schema(), other.browser);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.campaign)) {
this.campaign = data().deepCopy(fields()[2].schema(), other.campaign);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.channel)) {
this.channel = data().deepCopy(fields()[3].schema(), other.channel);
fieldSetFlags()[3] = true;
}
if (isValidValue(fields()[4], other.referrer)) {
this.referrer = data().deepCopy(fields()[4].schema(), other.referrer);
fieldSetFlags()[4] = true;
}
if (isValidValue(fields()[5], other.ip)) {
this.ip = data().deepCopy(fields()[5].schema(), other.ip);
fieldSetFlags()[5] = true;
}
}
/**
* Creates a Builder by copying an existing ClickRecord instance
* @param other The existing instance to copy.
*/
private Builder(ClickRecord other) {
super(SCHEMA$);
if (isValidValue(fields()[0], other.session_id)) {
this.session_id = data().deepCopy(fields()[0].schema(), other.session_id);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.browser)) {
this.browser = data().deepCopy(fields()[1].schema(), other.browser);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.campaign)) {
this.campaign = data().deepCopy(fields()[2].schema(), other.campaign);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.channel)) {
this.channel = data().deepCopy(fields()[3].schema(), other.channel);
fieldSetFlags()[3] = true;
}
if (isValidValue(fields()[4], other.referrer)) {
this.referrer = data().deepCopy(fields()[4].schema(), other.referrer);
fieldSetFlags()[4] = true;
}
if (isValidValue(fields()[5], other.ip)) {
this.ip = data().deepCopy(fields()[5].schema(), other.ip);
fieldSetFlags()[5] = true;
}
}
/**
* Gets the value of the 'session_id' field.
* @return The value.
*/
public java.lang.CharSequence getSessionId() {
return session_id;
}
/**
* Sets the value of the 'session_id' field.
* @param value The value of 'session_id'.
* @return This builder.
*/
public ClickRecord.Builder setSessionId(java.lang.CharSequence value) {
validate(fields()[0], value);
this.session_id = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'session_id' field has been set.
* @return True if the 'session_id' field has been set, false otherwise.
*/
public boolean hasSessionId() {
return fieldSetFlags()[0];
}
/**
* Clears the value of the 'session_id' field.
* @return This builder.
*/
public ClickRecord.Builder clearSessionId() {
session_id = null;
fieldSetFlags()[0] = false;
return this;
}
/**
* Gets the value of the 'browser' field.
* @return The value.
*/
public java.lang.CharSequence getBrowser() {
return browser;
}
/**
* Sets the value of the 'browser' field.
* @param value The value of 'browser'.
* @return This builder.
*/
public ClickRecord.Builder setBrowser(java.lang.CharSequence value) {
validate(fields()[1], value);
this.browser = value;
fieldSetFlags()[1] = true;
return this;
}
/**
* Checks whether the 'browser' field has been set.
* @return True if the 'browser' field has been set, false otherwise.
*/
public boolean hasBrowser() {
return fieldSetFlags()[1];
}
/**
* Clears the value of the 'browser' field.
* @return This builder.
*/
public ClickRecord.Builder clearBrowser() {
browser = null;
fieldSetFlags()[1] = false;
return this;
}
/**
* Gets the value of the 'campaign' field.
* @return The value.
*/
public java.lang.CharSequence getCampaign() {
return campaign;
}
/**
* Sets the value of the 'campaign' field.
* @param value The value of 'campaign'.
* @return This builder.
*/
public ClickRecord.Builder setCampaign(java.lang.CharSequence value) {
validate(fields()[2], value);
this.campaign = value;
fieldSetFlags()[2] = true;
return this;
}
/**
* Checks whether the 'campaign' field has been set.
* @return True if the 'campaign' field has been set, false otherwise.
*/
public boolean hasCampaign() {
return fieldSetFlags()[2];
}
/**
* Clears the value of the 'campaign' field.
* @return This builder.
*/
public ClickRecord.Builder clearCampaign() {
campaign = null;
fieldSetFlags()[2] = false;
return this;
}
/**
* Gets the value of the 'channel' field.
* @return The value.
*/
public java.lang.CharSequence getChannel() {
return channel;
}
/**
* Sets the value of the 'channel' field.
* @param value The value of 'channel'.
* @return This builder.
*/
public ClickRecord.Builder setChannel(java.lang.CharSequence value) {
validate(fields()[3], value);
this.channel = value;
fieldSetFlags()[3] = true;
return this;
}
/**
* Checks whether the 'channel' field has been set.
* @return True if the 'channel' field has been set, false otherwise.
*/
public boolean hasChannel() {
return fieldSetFlags()[3];
}
/**
* Clears the value of the 'channel' field.
* @return This builder.
*/
public ClickRecord.Builder clearChannel() {
channel = null;
fieldSetFlags()[3] = false;
return this;
}
/**
* Gets the value of the 'referrer' field.
* @return The value.
*/
public java.lang.CharSequence getReferrer() {
return referrer;
}
/**
* Sets the value of the 'referrer' field.
* @param value The value of 'referrer'.
* @return This builder.
*/
public ClickRecord.Builder setReferrer(java.lang.CharSequence value) {
validate(fields()[4], value);
this.referrer = value;
fieldSetFlags()[4] = true;
return this;
}
/**
* Checks whether the 'referrer' field has been set.
* @return True if the 'referrer' field has been set, false otherwise.
*/
public boolean hasReferrer() {
return fieldSetFlags()[4];
}
/**
* Clears the value of the 'referrer' field.
* @return This builder.
*/
public ClickRecord.Builder clearReferrer() {
referrer = null;
fieldSetFlags()[4] = false;
return this;
}
/**
* Gets the value of the 'ip' field.
* @return The value.
*/
public java.lang.CharSequence getIp() {
return ip;
}
/**
* Sets the value of the 'ip' field.
* @param value The value of 'ip'.
* @return This builder.
*/
public ClickRecord.Builder setIp(java.lang.CharSequence value) {
validate(fields()[5], value);
this.ip = value;
fieldSetFlags()[5] = true;
return this;
}
/**
* Checks whether the 'ip' field has been set.
* @return True if the 'ip' field has been set, false otherwise.
*/
public boolean hasIp() {
return fieldSetFlags()[5];
}
/**
* Clears the value of the 'ip' field.
* @return This builder.
*/
public ClickRecord.Builder clearIp() {
ip = null;
fieldSetFlags()[5] = false;
return this;
}
@Override
public ClickRecord build() {
try {
ClickRecord record = new ClickRecord();
record.session_id = fieldSetFlags()[0] ? this.session_id : (java.lang.CharSequence) defaultValue(fields()[0]);
record.browser = fieldSetFlags()[1] ? this.browser : (java.lang.CharSequence) defaultValue(fields()[1]);
record.campaign = fieldSetFlags()[2] ? this.campaign : (java.lang.CharSequence) defaultValue(fields()[2]);
record.channel = fieldSetFlags()[3] ? this.channel : (java.lang.CharSequence) defaultValue(fields()[3]);
record.referrer = fieldSetFlags()[4] ? this.referrer : (java.lang.CharSequence) defaultValue(fields()[4]);
record.ip = fieldSetFlags()[5] ? this.ip : (java.lang.CharSequence) defaultValue(fields()[5]);
return record;
} catch (Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
private static final org.apache.avro.io.DatumWriter
WRITER$ = new org.apache.avro.specific.SpecificDatumWriter(SCHEMA$);
@Override public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException {
WRITER$.write(this, SpecificData.getEncoder(out));
}
private static final org.apache.avro.io.DatumReader
READER$ = new org.apache.avro.specific.SpecificDatumReader(SCHEMA$);
@Override public void readExternal(java.io.ObjectInput in)
throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
}