-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathState.java
452 lines (400 loc) · 13.4 KB
/
State.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
/*
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Autogenerated by Avro
*
* <p>DO NOT EDIT DIRECTLY
*/
/**
* This file is created using Avro tools.
*
* <p>To download, visit https://avro.apache.org/releases.html#Download
*
* <p>Run the following command from the `samples/snippets` directory to generate this class:
*
* <p>`java -jar /location/to/your/avro-tools-1.10.1.jar compile schema
* src/main/resources/us-states.avsc src/main/java/`
*/
package utilities;
import org.apache.avro.message.BinaryMessageDecoder;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.SchemaStore;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
/** A list of states in the United States of America. */
@org.apache.avro.specific.AvroGenerated
public class State extends org.apache.avro.specific.SpecificRecordBase
implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = -6098929419967278282L;
public static final org.apache.avro.Schema SCHEMA$ =
new org.apache.avro.Schema.Parser()
.parse(
"{\"type\":\"record\",\"name\":\"State\",\"namespace\":\"utilities\",\"doc\":\"A list of states in the United States of America.\",\"fields\":[{\"name\":\"name\",\"type\":\"string\",\"doc\":\"The common name of the state.\"},{\"name\":\"post_abbr\",\"type\":\"string\",\"doc\":\"The postal code abbreviation of the state.\"}]}");
public static org.apache.avro.Schema getClassSchema() {
return SCHEMA$;
}
private static SpecificData MODEL$ = new SpecificData();
private static final BinaryMessageEncoder<State> ENCODER =
new BinaryMessageEncoder<State>(MODEL$, SCHEMA$);
private static final BinaryMessageDecoder<State> DECODER =
new BinaryMessageDecoder<State>(MODEL$, SCHEMA$);
/**
* Return the BinaryMessageEncoder instance used by this class.
*
* @return the message encoder used by this class
*/
public static BinaryMessageEncoder<State> getEncoder() {
return ENCODER;
}
/**
* Return the BinaryMessageDecoder instance used by this class.
*
* @return the message decoder used by this class
*/
public static BinaryMessageDecoder<State> getDecoder() {
return DECODER;
}
/**
* Create a new BinaryMessageDecoder instance for this class that uses the specified {@link
* SchemaStore}.
*
* @param resolver a {@link SchemaStore} used to find schemas by fingerprint
* @return a BinaryMessageDecoder instance for this class backed by the given SchemaStore
*/
public static BinaryMessageDecoder<State> createDecoder(SchemaStore resolver) {
return new BinaryMessageDecoder<State>(MODEL$, SCHEMA$, resolver);
}
/**
* Serializes this State to a ByteBuffer.
*
* @return a buffer holding the serialized data for this instance
* @throws java.io.IOException if this instance could not be serialized
*/
public java.nio.ByteBuffer toByteBuffer() throws java.io.IOException {
return ENCODER.encode(this);
}
/**
* Deserializes a State from a ByteBuffer.
*
* @param b a byte buffer holding serialized data for an instance of this class
* @return a State instance decoded from the given buffer
* @throws java.io.IOException if the given bytes could not be deserialized into an instance of
* this class
*/
public static State fromByteBuffer(java.nio.ByteBuffer b) throws java.io.IOException {
return DECODER.decode(b);
}
/** The common name of the state. */
private java.lang.CharSequence name;
/** The postal code abbreviation of the state. */
private java.lang.CharSequence post_abbr;
/**
* 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 State() {}
/**
* All-args constructor.
*
* @param name The common name of the state.
* @param post_abbr The postal code abbreviation of the state.
*/
public State(java.lang.CharSequence name, java.lang.CharSequence post_abbr) {
this.name = name;
this.post_abbr = post_abbr;
}
public org.apache.avro.specific.SpecificData getSpecificData() {
return MODEL$;
}
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 name;
case 1:
return post_abbr;
default:
throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
// Used by DatumReader. Applications should not call.
@SuppressWarnings(value = "unchecked")
public void put(int field$, java.lang.Object value$) {
switch (field$) {
case 0:
name = (java.lang.CharSequence) value$;
break;
case 1:
post_abbr = (java.lang.CharSequence) value$;
break;
default:
throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
/**
* Gets the value of the 'name' field.
*
* @return The common name of the state.
*/
public java.lang.CharSequence getName() {
return name;
}
/**
* Sets the value of the 'name' field. The common name of the state.
*
* @param value the value to set.
*/
public void setName(java.lang.CharSequence value) {
this.name = value;
}
/**
* Gets the value of the 'post_abbr' field.
*
* @return The postal code abbreviation of the state.
*/
public java.lang.CharSequence getPostAbbr() {
return post_abbr;
}
/**
* Sets the value of the 'post_abbr' field. The postal code abbreviation of the state.
*
* @param value the value to set.
*/
public void setPostAbbr(java.lang.CharSequence value) {
this.post_abbr = value;
}
/**
* Creates a new State RecordBuilder.
*
* @return A new State RecordBuilder
*/
public static utilities.State.Builder newBuilder() {
return new utilities.State.Builder();
}
/**
* Creates a new State RecordBuilder by copying an existing Builder.
*
* @param other The existing builder to copy.
* @return A new State RecordBuilder
*/
public static utilities.State.Builder newBuilder(utilities.State.Builder other) {
if (other == null) {
return new utilities.State.Builder();
} else {
return new utilities.State.Builder(other);
}
}
/**
* Creates a new State RecordBuilder by copying an existing State instance.
*
* @param other The existing instance to copy.
* @return A new State RecordBuilder
*/
public static utilities.State.Builder newBuilder(utilities.State other) {
if (other == null) {
return new utilities.State.Builder();
} else {
return new utilities.State.Builder(other);
}
}
/** RecordBuilder for State instances. */
@org.apache.avro.specific.AvroGenerated
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase<State>
implements org.apache.avro.data.RecordBuilder<State> {
/** The common name of the state. */
private java.lang.CharSequence name;
/** The postal code abbreviation of the state. */
private java.lang.CharSequence post_abbr;
/** 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(utilities.State.Builder other) {
super(other);
if (isValidValue(fields()[0], other.name)) {
this.name = data().deepCopy(fields()[0].schema(), other.name);
fieldSetFlags()[0] = other.fieldSetFlags()[0];
}
if (isValidValue(fields()[1], other.post_abbr)) {
this.post_abbr = data().deepCopy(fields()[1].schema(), other.post_abbr);
fieldSetFlags()[1] = other.fieldSetFlags()[1];
}
}
/**
* Creates a Builder by copying an existing State instance
*
* @param other The existing instance to copy.
*/
private Builder(utilities.State other) {
super(SCHEMA$);
if (isValidValue(fields()[0], other.name)) {
this.name = data().deepCopy(fields()[0].schema(), other.name);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.post_abbr)) {
this.post_abbr = data().deepCopy(fields()[1].schema(), other.post_abbr);
fieldSetFlags()[1] = true;
}
}
/**
* Gets the value of the 'name' field. The common name of the state.
*
* @return The value.
*/
public java.lang.CharSequence getName() {
return name;
}
/**
* Sets the value of the 'name' field. The common name of the state.
*
* @param value The value of 'name'.
* @return This builder.
*/
public utilities.State.Builder setName(java.lang.CharSequence value) {
validate(fields()[0], value);
this.name = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'name' field has been set. The common name of the state.
*
* @return True if the 'name' field has been set, false otherwise.
*/
public boolean hasName() {
return fieldSetFlags()[0];
}
/**
* Clears the value of the 'name' field. The common name of the state.
*
* @return This builder.
*/
public utilities.State.Builder clearName() {
name = null;
fieldSetFlags()[0] = false;
return this;
}
/**
* Gets the value of the 'post_abbr' field. The postal code abbreviation of the state.
*
* @return The value.
*/
public java.lang.CharSequence getPostAbbr() {
return post_abbr;
}
/**
* Sets the value of the 'post_abbr' field. The postal code abbreviation of the state.
*
* @param value The value of 'post_abbr'.
* @return This builder.
*/
public utilities.State.Builder setPostAbbr(java.lang.CharSequence value) {
validate(fields()[1], value);
this.post_abbr = value;
fieldSetFlags()[1] = true;
return this;
}
/**
* Checks whether the 'post_abbr' field has been set. The postal code abbreviation of the state.
*
* @return True if the 'post_abbr' field has been set, false otherwise.
*/
public boolean hasPostAbbr() {
return fieldSetFlags()[1];
}
/**
* Clears the value of the 'post_abbr' field. The postal code abbreviation of the state.
*
* @return This builder.
*/
public utilities.State.Builder clearPostAbbr() {
post_abbr = null;
fieldSetFlags()[1] = false;
return this;
}
@Override
@SuppressWarnings("unchecked")
public State build() {
try {
State record = new State();
record.name =
fieldSetFlags()[0] ? this.name : (java.lang.CharSequence) defaultValue(fields()[0]);
record.post_abbr =
fieldSetFlags()[1]
? this.post_abbr
: (java.lang.CharSequence) defaultValue(fields()[1]);
return record;
} catch (org.apache.avro.AvroMissingFieldException e) {
throw e;
} catch (java.lang.Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumWriter<State> WRITER$ =
(org.apache.avro.io.DatumWriter<State>) MODEL$.createDatumWriter(SCHEMA$);
@Override
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException {
WRITER$.write(this, SpecificData.getEncoder(out));
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumReader<State> READER$ =
(org.apache.avro.io.DatumReader<State>) MODEL$.createDatumReader(SCHEMA$);
@Override
public void readExternal(java.io.ObjectInput in) throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
@Override
protected boolean hasCustomCoders() {
return true;
}
@Override
public void customEncode(org.apache.avro.io.Encoder out) throws java.io.IOException {
out.writeString(this.name);
out.writeString(this.post_abbr);
}
@Override
public void customDecode(org.apache.avro.io.ResolvingDecoder in) throws java.io.IOException {
org.apache.avro.Schema.Field[] fieldOrder = in.readFieldOrderIfDiff();
if (fieldOrder == null) {
this.name = in.readString(this.name instanceof Utf8 ? (Utf8) this.name : null);
this.post_abbr = in.readString(this.post_abbr instanceof Utf8 ? (Utf8) this.post_abbr : null);
} else {
for (int i = 0; i < 2; i++) {
switch (fieldOrder[i].pos()) {
case 0:
this.name = in.readString(this.name instanceof Utf8 ? (Utf8) this.name : null);
break;
case 1:
this.post_abbr =
in.readString(this.post_abbr instanceof Utf8 ? (Utf8) this.post_abbr : null);
break;
default:
throw new java.io.IOException("Corrupt ResolvingDecoder.");
}
}
}
}
}