com.qcloud.cos.model.InputSerialization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
/*
* Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.
* According to cos feature, we modify some class,comment, field name, etc.
*/
package com.qcloud.cos.model;
import java.io.Serializable;
/**
* Describes the serialization format of the object.
*
*/
public class InputSerialization implements Serializable, Cloneable {
/**
* Describes the serialization of a CSV-encoded object.
*/
private CSVInput csv;
/**
* Specifies JSON as object's input serialization format.
*/
private JSONInput json;
/**
* Specifies Parquet as object's input serialization format.
*/
private ParquetInput parquet;
private String compressionType;
/**
* @return the serialization of a CSV-encoded object.
*/
public CSVInput getCsv() {
return csv;
}
/**
* Sets the serialization of a CSV-encoded object.
*
* @param csv The new csv value.
*/
public void setCsv(CSVInput csv) {
this.csv = csv;
}
/**
* Sets the serialization of a CSV-encoded object.
*
* @param csvInput The new csv value.
* @return This object for method chaining.
*/
public InputSerialization withCsv(CSVInput csvInput) {
setCsv(csvInput);
return this;
}
/**
* Specifies JSON as object's input serialization format.
*/
public JSONInput getJson() {
return json;
}
/**
* Specifies JSON as object's input serialization format.
*/
public void setJson(JSONInput json) {
this.json = json;
}
/**
* Specifies JSON as object's input serialization format.
*/
public InputSerialization withJson(JSONInput json) {
setJson(json);
return this;
}
/**
* Specifies Parquet as object's input serialization format.
*/
public ParquetInput getParquet() {
return parquet;
}
/**
* Specifies Parquet as object's input serialization format.
* The parquet type is not currently supported
*/
private void setParquet(ParquetInput parquet) {
this.parquet = parquet;
}
/**
* Specifies Parquet as object's input serialization format.
* The parquet type is not currently supported
*/
private InputSerialization withParquet(ParquetInput parquet) {
setParquet(parquet);
return this;
}
/**
* Specifies object's compression format. Valid values: NONE, GZIP. Default Value: NONE.
*/
public String getCompressionType() {
return compressionType;
}
/**
* Specifies object's compression format. Valid values: NONE, GZIP. Default Value: NONE.
*/
public void setCompressionType(String compressionType) {
this.compressionType = compressionType;
}
/**
* Specifies object's compression format. Valid values: NONE, GZIP. Default Value: NONE.
*/
public void setCompressionType(CompressionType compressionType) {
setCompressionType(compressionType == null ? null : compressionType.toString());
}
/**
* Specifies object's compression format. Valid values: NONE, GZIP. Default Value: NONE.
*/
public InputSerialization withCompressionType(String compressionType) {
setCompressionType(compressionType);
return this;
}
/**
* Specifies object's compression format. Valid values: NONE, GZIP. Default Value: NONE.
*/
public InputSerialization withCompressionType(CompressionType compressionType) {
setCompressionType(compressionType);
return this;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || ! (obj instanceof InputSerialization)) {
return false;
}
final InputSerialization other = (InputSerialization) obj;
if (other.getCsv() == null ^ this.getCsv() == null)
return false;
if (other.getCsv() != null && !other.getCsv().equals(this.getCsv()))
return false;
if (other.getJson() == null ^ this.getJson() == null)
return false;
if (other.getJson() != null && !other.getJson().equals(this.getJson()))
return false;
if (other.getCompressionType() == null ^ this.getCompressionType() == null)
return false;
if (other.getCompressionType() != null && !other.getCompressionType().equals(this.getCompressionType()))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCsv() == null) ? 0 : getCsv().hashCode());
hashCode = prime * hashCode + ((getJson() == null) ? 0 : getJson().hashCode());
hashCode = prime * hashCode + ((getCompressionType() == null) ? 0 : getCompressionType().hashCode());
return hashCode;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getCsv() != null)
sb.append("Csv: ").append(getCsv());
if (getJson() != null)
sb.append("Json: ").append(getJson());
if (getCompressionType() != null)
sb.append("CompressionType: ").append(getCompressionType());
sb.append("}");
return sb.toString();
}
@Override
public InputSerialization clone() {
try {
return (InputSerialization) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}