All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.inlong.sort.filesystem.shaded.com.amazonaws.services.s3.model.InputSerialization Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
/*
 * Copyright 2010-2022 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.
 */

package com.amazonaws.services.s3.model;

import java.io.Serializable;

/**
 * Describes the serialization format of the object.
 *
 * @see SelectParameters#inputSerialization
 */
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.
     */
    public void setParquet(ParquetInput parquet) {
        this.parquet = parquet;
    }

    /**
     * Specifies Parquet as object's input serialization format.
     */
    public 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);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy