Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package org.apache.parquet.avro;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecoder;
import org.apache.avro.message.SchemaStore;
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class Engine extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = -3053216882463140323L;
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"Engine\",\"namespace\":\"org.apache.parquet.avro\",\"fields\":[{\"name\":\"type\",\"type\":{\"type\":\"enum\",\"name\":\"EngineType\",\"symbols\":[\"DIESEL\",\"PETROL\",\"ELECTRIC\"]}},{\"name\":\"capacity\",\"type\":\"float\"},{\"name\":\"hasTurboCharger\",\"type\":\"boolean\"}]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
private static SpecificData MODEL$ = new SpecificData();
private static final BinaryMessageEncoder ENCODER =
new BinaryMessageEncoder(MODEL$, SCHEMA$);
private static final BinaryMessageDecoder DECODER =
new BinaryMessageDecoder(MODEL$, SCHEMA$);
/**
* Return the BinaryMessageDecoder instance used by this class.
*/
public static BinaryMessageDecoder 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
*/
public static BinaryMessageDecoder createDecoder(SchemaStore resolver) {
return new BinaryMessageDecoder(MODEL$, SCHEMA$, resolver);
}
/** Serializes this Engine to a ByteBuffer. */
public java.nio.ByteBuffer toByteBuffer() throws java.io.IOException {
return ENCODER.encode(this);
}
/** Deserializes a Engine from a ByteBuffer. */
public static Engine fromByteBuffer(
java.nio.ByteBuffer b) throws java.io.IOException {
return DECODER.decode(b);
}
@Deprecated public org.apache.parquet.avro.EngineType type;
@Deprecated public float capacity;
@Deprecated public boolean hasTurboCharger;
/**
* Default constructor. Note that this does not initialize fields
* to their default values from the schema. If that is desired then
* one should use newBuilder().
*/
public Engine() {}
/**
* All-args constructor.
* @param type The new value for type
* @param capacity The new value for capacity
* @param hasTurboCharger The new value for hasTurboCharger
*/
public Engine(org.apache.parquet.avro.EngineType type, java.lang.Float capacity, java.lang.Boolean hasTurboCharger) {
this.type = type;
this.capacity = capacity;
this.hasTurboCharger = hasTurboCharger;
}
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 type;
case 1: return capacity;
case 2: return hasTurboCharger;
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: type = (org.apache.parquet.avro.EngineType)value$; break;
case 1: capacity = (java.lang.Float)value$; break;
case 2: hasTurboCharger = (java.lang.Boolean)value$; break;
default: throw new org.apache.avro.AvroRuntimeException("Bad index");
}
}
/**
* Gets the value of the 'type' field.
* @return The value of the 'type' field.
*/
public org.apache.parquet.avro.EngineType getType() {
return type;
}
/**
* Sets the value of the 'type' field.
* @param value the value to set.
*/
public void setType(org.apache.parquet.avro.EngineType value) {
this.type = value;
}
/**
* Gets the value of the 'capacity' field.
* @return The value of the 'capacity' field.
*/
public java.lang.Float getCapacity() {
return capacity;
}
/**
* Sets the value of the 'capacity' field.
* @param value the value to set.
*/
public void setCapacity(java.lang.Float value) {
this.capacity = value;
}
/**
* Gets the value of the 'hasTurboCharger' field.
* @return The value of the 'hasTurboCharger' field.
*/
public java.lang.Boolean getHasTurboCharger() {
return hasTurboCharger;
}
/**
* Sets the value of the 'hasTurboCharger' field.
* @param value the value to set.
*/
public void setHasTurboCharger(java.lang.Boolean value) {
this.hasTurboCharger = value;
}
/**
* Creates a new Engine RecordBuilder.
* @return A new Engine RecordBuilder
*/
public static org.apache.parquet.avro.Engine.Builder newBuilder() {
return new org.apache.parquet.avro.Engine.Builder();
}
/**
* Creates a new Engine RecordBuilder by copying an existing Builder.
* @param other The existing builder to copy.
* @return A new Engine RecordBuilder
*/
public static org.apache.parquet.avro.Engine.Builder newBuilder(org.apache.parquet.avro.Engine.Builder other) {
return new org.apache.parquet.avro.Engine.Builder(other);
}
/**
* Creates a new Engine RecordBuilder by copying an existing Engine instance.
* @param other The existing instance to copy.
* @return A new Engine RecordBuilder
*/
public static org.apache.parquet.avro.Engine.Builder newBuilder(org.apache.parquet.avro.Engine other) {
return new org.apache.parquet.avro.Engine.Builder(other);
}
/**
* RecordBuilder for Engine instances.
*/
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
implements org.apache.avro.data.RecordBuilder {
private org.apache.parquet.avro.EngineType type;
private float capacity;
private boolean hasTurboCharger;
/** 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(org.apache.parquet.avro.Engine.Builder other) {
super(other);
if (isValidValue(fields()[0], other.type)) {
this.type = data().deepCopy(fields()[0].schema(), other.type);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.capacity)) {
this.capacity = data().deepCopy(fields()[1].schema(), other.capacity);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.hasTurboCharger)) {
this.hasTurboCharger = data().deepCopy(fields()[2].schema(), other.hasTurboCharger);
fieldSetFlags()[2] = true;
}
}
/**
* Creates a Builder by copying an existing Engine instance
* @param other The existing instance to copy.
*/
private Builder(org.apache.parquet.avro.Engine other) {
super(SCHEMA$);
if (isValidValue(fields()[0], other.type)) {
this.type = data().deepCopy(fields()[0].schema(), other.type);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.capacity)) {
this.capacity = data().deepCopy(fields()[1].schema(), other.capacity);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.hasTurboCharger)) {
this.hasTurboCharger = data().deepCopy(fields()[2].schema(), other.hasTurboCharger);
fieldSetFlags()[2] = true;
}
}
/**
* Gets the value of the 'type' field.
* @return The value.
*/
public org.apache.parquet.avro.EngineType getType() {
return type;
}
/**
* Sets the value of the 'type' field.
* @param value The value of 'type'.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder setType(org.apache.parquet.avro.EngineType value) {
validate(fields()[0], value);
this.type = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'type' field has been set.
* @return True if the 'type' field has been set, false otherwise.
*/
public boolean hasType() {
return fieldSetFlags()[0];
}
/**
* Clears the value of the 'type' field.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder clearType() {
type = null;
fieldSetFlags()[0] = false;
return this;
}
/**
* Gets the value of the 'capacity' field.
* @return The value.
*/
public java.lang.Float getCapacity() {
return capacity;
}
/**
* Sets the value of the 'capacity' field.
* @param value The value of 'capacity'.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder setCapacity(float value) {
validate(fields()[1], value);
this.capacity = value;
fieldSetFlags()[1] = true;
return this;
}
/**
* Checks whether the 'capacity' field has been set.
* @return True if the 'capacity' field has been set, false otherwise.
*/
public boolean hasCapacity() {
return fieldSetFlags()[1];
}
/**
* Clears the value of the 'capacity' field.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder clearCapacity() {
fieldSetFlags()[1] = false;
return this;
}
/**
* Gets the value of the 'hasTurboCharger' field.
* @return The value.
*/
public java.lang.Boolean getHasTurboCharger() {
return hasTurboCharger;
}
/**
* Sets the value of the 'hasTurboCharger' field.
* @param value The value of 'hasTurboCharger'.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder setHasTurboCharger(boolean value) {
validate(fields()[2], value);
this.hasTurboCharger = value;
fieldSetFlags()[2] = true;
return this;
}
/**
* Checks whether the 'hasTurboCharger' field has been set.
* @return True if the 'hasTurboCharger' field has been set, false otherwise.
*/
public boolean hasHasTurboCharger() {
return fieldSetFlags()[2];
}
/**
* Clears the value of the 'hasTurboCharger' field.
* @return This builder.
*/
public org.apache.parquet.avro.Engine.Builder clearHasTurboCharger() {
fieldSetFlags()[2] = false;
return this;
}
@Override
@SuppressWarnings("unchecked")
public Engine build() {
try {
Engine record = new Engine();
record.type = fieldSetFlags()[0] ? this.type : (org.apache.parquet.avro.EngineType) defaultValue(fields()[0]);
record.capacity = fieldSetFlags()[1] ? this.capacity : (java.lang.Float) defaultValue(fields()[1]);
record.hasTurboCharger = fieldSetFlags()[2] ? this.hasTurboCharger : (java.lang.Boolean) defaultValue(fields()[2]);
return record;
} catch (java.lang.Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumWriter
WRITER$ = (org.apache.avro.io.DatumWriter)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
READER$ = (org.apache.avro.io.DatumReader)MODEL$.createDatumReader(SCHEMA$);
@Override public void readExternal(java.io.ObjectInput in)
throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
}