com.uber.hoodie.avro.model.HoodieRestoreMetadata Maven / Gradle / Ivy
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package com.uber.hoodie.avro.model;
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class HoodieRestoreMetadata extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"HoodieRestoreMetadata\",\"namespace\":\"com.uber.hoodie.avro.model\",\"fields\":[{\"name\":\"startRestoreTime\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"timeTakenInMillis\",\"type\":\"long\"},{\"name\":\"instantsToRollback\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"hoodieRestoreMetadata\",\"type\":{\"type\":\"map\",\"values\":{\"type\":\"array\",\"items\":{\"type\":\"record\",\"name\":\"HoodieRollbackMetadata\",\"fields\":[{\"name\":\"startRollbackTime\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"timeTakenInMillis\",\"type\":\"long\"},{\"name\":\"totalFilesDeleted\",\"type\":\"int\"},{\"name\":\"commitsRollback\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"partitionMetadata\",\"type\":{\"type\":\"map\",\"values\":{\"type\":\"record\",\"name\":\"HoodieRollbackPartitionMetadata\",\"fields\":[{\"name\":\"partitionPath\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"successDeleteFiles\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"failedDeleteFiles\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}}]},\"avro.java.string\":\"String\"}}]},\"default\":\"null\"},\"avro.java.string\":\"String\"}}]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
@Deprecated public java.lang.String startRestoreTime;
@Deprecated public long timeTakenInMillis;
@Deprecated public java.util.List instantsToRollback;
@Deprecated public java.util.Map> hoodieRestoreMetadata;
/**
* 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 HoodieRestoreMetadata() {}
/**
* All-args constructor.
*/
public HoodieRestoreMetadata(java.lang.String startRestoreTime, java.lang.Long timeTakenInMillis, java.util.List instantsToRollback, java.util.Map> hoodieRestoreMetadata) {
this.startRestoreTime = startRestoreTime;
this.timeTakenInMillis = timeTakenInMillis;
this.instantsToRollback = instantsToRollback;
this.hoodieRestoreMetadata = hoodieRestoreMetadata;
}
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 startRestoreTime;
case 1: return timeTakenInMillis;
case 2: return instantsToRollback;
case 3: return hoodieRestoreMetadata;
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: startRestoreTime = (java.lang.String)value$; break;
case 1: timeTakenInMillis = (java.lang.Long)value$; break;
case 2: instantsToRollback = (java.util.List)value$; break;
case 3: hoodieRestoreMetadata = (java.util.Map>)value$; break;
default: throw new org.apache.avro.AvroRuntimeException("Bad index");
}
}
/**
* Gets the value of the 'startRestoreTime' field.
*/
public java.lang.String getStartRestoreTime() {
return startRestoreTime;
}
/**
* Sets the value of the 'startRestoreTime' field.
* @param value the value to set.
*/
public void setStartRestoreTime(java.lang.String value) {
this.startRestoreTime = value;
}
/**
* Gets the value of the 'timeTakenInMillis' field.
*/
public java.lang.Long getTimeTakenInMillis() {
return timeTakenInMillis;
}
/**
* Sets the value of the 'timeTakenInMillis' field.
* @param value the value to set.
*/
public void setTimeTakenInMillis(java.lang.Long value) {
this.timeTakenInMillis = value;
}
/**
* Gets the value of the 'instantsToRollback' field.
*/
public java.util.List getInstantsToRollback() {
return instantsToRollback;
}
/**
* Sets the value of the 'instantsToRollback' field.
* @param value the value to set.
*/
public void setInstantsToRollback(java.util.List value) {
this.instantsToRollback = value;
}
/**
* Gets the value of the 'hoodieRestoreMetadata' field.
*/
public java.util.Map> getHoodieRestoreMetadata() {
return hoodieRestoreMetadata;
}
/**
* Sets the value of the 'hoodieRestoreMetadata' field.
* @param value the value to set.
*/
public void setHoodieRestoreMetadata(java.util.Map> value) {
this.hoodieRestoreMetadata = value;
}
/** Creates a new HoodieRestoreMetadata RecordBuilder */
public static com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder newBuilder() {
return new com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder();
}
/** Creates a new HoodieRestoreMetadata RecordBuilder by copying an existing Builder */
public static com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder newBuilder(com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder other) {
return new com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder(other);
}
/** Creates a new HoodieRestoreMetadata RecordBuilder by copying an existing HoodieRestoreMetadata instance */
public static com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder newBuilder(com.uber.hoodie.avro.model.HoodieRestoreMetadata other) {
return new com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder(other);
}
/**
* RecordBuilder for HoodieRestoreMetadata instances.
*/
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
implements org.apache.avro.data.RecordBuilder {
private java.lang.String startRestoreTime;
private long timeTakenInMillis;
private java.util.List instantsToRollback;
private java.util.Map> hoodieRestoreMetadata;
/** Creates a new Builder */
private Builder() {
super(com.uber.hoodie.avro.model.HoodieRestoreMetadata.SCHEMA$);
}
/** Creates a Builder by copying an existing Builder */
private Builder(com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder other) {
super(other);
if (isValidValue(fields()[0], other.startRestoreTime)) {
this.startRestoreTime = data().deepCopy(fields()[0].schema(), other.startRestoreTime);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.timeTakenInMillis)) {
this.timeTakenInMillis = data().deepCopy(fields()[1].schema(), other.timeTakenInMillis);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.instantsToRollback)) {
this.instantsToRollback = data().deepCopy(fields()[2].schema(), other.instantsToRollback);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.hoodieRestoreMetadata)) {
this.hoodieRestoreMetadata = data().deepCopy(fields()[3].schema(), other.hoodieRestoreMetadata);
fieldSetFlags()[3] = true;
}
}
/** Creates a Builder by copying an existing HoodieRestoreMetadata instance */
private Builder(com.uber.hoodie.avro.model.HoodieRestoreMetadata other) {
super(com.uber.hoodie.avro.model.HoodieRestoreMetadata.SCHEMA$);
if (isValidValue(fields()[0], other.startRestoreTime)) {
this.startRestoreTime = data().deepCopy(fields()[0].schema(), other.startRestoreTime);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.timeTakenInMillis)) {
this.timeTakenInMillis = data().deepCopy(fields()[1].schema(), other.timeTakenInMillis);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.instantsToRollback)) {
this.instantsToRollback = data().deepCopy(fields()[2].schema(), other.instantsToRollback);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.hoodieRestoreMetadata)) {
this.hoodieRestoreMetadata = data().deepCopy(fields()[3].schema(), other.hoodieRestoreMetadata);
fieldSetFlags()[3] = true;
}
}
/** Gets the value of the 'startRestoreTime' field */
public java.lang.String getStartRestoreTime() {
return startRestoreTime;
}
/** Sets the value of the 'startRestoreTime' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder setStartRestoreTime(java.lang.String value) {
validate(fields()[0], value);
this.startRestoreTime = value;
fieldSetFlags()[0] = true;
return this;
}
/** Checks whether the 'startRestoreTime' field has been set */
public boolean hasStartRestoreTime() {
return fieldSetFlags()[0];
}
/** Clears the value of the 'startRestoreTime' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder clearStartRestoreTime() {
startRestoreTime = null;
fieldSetFlags()[0] = false;
return this;
}
/** Gets the value of the 'timeTakenInMillis' field */
public java.lang.Long getTimeTakenInMillis() {
return timeTakenInMillis;
}
/** Sets the value of the 'timeTakenInMillis' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder setTimeTakenInMillis(long value) {
validate(fields()[1], value);
this.timeTakenInMillis = value;
fieldSetFlags()[1] = true;
return this;
}
/** Checks whether the 'timeTakenInMillis' field has been set */
public boolean hasTimeTakenInMillis() {
return fieldSetFlags()[1];
}
/** Clears the value of the 'timeTakenInMillis' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder clearTimeTakenInMillis() {
fieldSetFlags()[1] = false;
return this;
}
/** Gets the value of the 'instantsToRollback' field */
public java.util.List getInstantsToRollback() {
return instantsToRollback;
}
/** Sets the value of the 'instantsToRollback' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder setInstantsToRollback(java.util.List value) {
validate(fields()[2], value);
this.instantsToRollback = value;
fieldSetFlags()[2] = true;
return this;
}
/** Checks whether the 'instantsToRollback' field has been set */
public boolean hasInstantsToRollback() {
return fieldSetFlags()[2];
}
/** Clears the value of the 'instantsToRollback' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder clearInstantsToRollback() {
instantsToRollback = null;
fieldSetFlags()[2] = false;
return this;
}
/** Gets the value of the 'hoodieRestoreMetadata' field */
public java.util.Map> getHoodieRestoreMetadata() {
return hoodieRestoreMetadata;
}
/** Sets the value of the 'hoodieRestoreMetadata' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder setHoodieRestoreMetadata(java.util.Map> value) {
validate(fields()[3], value);
this.hoodieRestoreMetadata = value;
fieldSetFlags()[3] = true;
return this;
}
/** Checks whether the 'hoodieRestoreMetadata' field has been set */
public boolean hasHoodieRestoreMetadata() {
return fieldSetFlags()[3];
}
/** Clears the value of the 'hoodieRestoreMetadata' field */
public com.uber.hoodie.avro.model.HoodieRestoreMetadata.Builder clearHoodieRestoreMetadata() {
hoodieRestoreMetadata = null;
fieldSetFlags()[3] = false;
return this;
}
@Override
public HoodieRestoreMetadata build() {
try {
HoodieRestoreMetadata record = new HoodieRestoreMetadata();
record.startRestoreTime = fieldSetFlags()[0] ? this.startRestoreTime : (java.lang.String) defaultValue(fields()[0]);
record.timeTakenInMillis = fieldSetFlags()[1] ? this.timeTakenInMillis : (java.lang.Long) defaultValue(fields()[1]);
record.instantsToRollback = fieldSetFlags()[2] ? this.instantsToRollback : (java.util.List) defaultValue(fields()[2]);
record.hoodieRestoreMetadata = fieldSetFlags()[3] ? this.hoodieRestoreMetadata : (java.util.Map>) defaultValue(fields()[3]);
return record;
} catch (Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy