![JAR search and dependency download from the Maven repository](/logo.png)
com.amazonaws.services.kinesisanalytics.model.CSVMappingParameters Maven / Gradle / Ivy
/*
* Copyright 2011-2016 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.kinesisanalytics.model;
import java.io.Serializable;
/**
*
* Provides additional mapping information when the record format uses
* delimiters, such as CSV. For example, the following sample records use CSV
* format, where the records use the '\n' as the row delimiter and a
* comma (",") as the column delimiter:
*
*
* "name1", "address1"
*
*
* "name2, "address2"
*
*/
public class CSVMappingParameters implements Serializable, Cloneable {
/**
*
* Row delimiter. For example, in a CSV format, '\n' is the typical
* row delimiter.
*
*/
private String recordRowDelimiter;
/**
*
* Column delimiter. For example, in a CSV format, a comma (",") is the
* typical column delimiter.
*
*/
private String recordColumnDelimiter;
/**
*
* Row delimiter. For example, in a CSV format, '\n' is the typical
* row delimiter.
*
*
* @param recordRowDelimiter
* Row delimiter. For example, in a CSV format, '\n' is the
* typical row delimiter.
*/
public void setRecordRowDelimiter(String recordRowDelimiter) {
this.recordRowDelimiter = recordRowDelimiter;
}
/**
*
* Row delimiter. For example, in a CSV format, '\n' is the typical
* row delimiter.
*
*
* @return Row delimiter. For example, in a CSV format, '\n' is the
* typical row delimiter.
*/
public String getRecordRowDelimiter() {
return this.recordRowDelimiter;
}
/**
*
* Row delimiter. For example, in a CSV format, '\n' is the typical
* row delimiter.
*
*
* @param recordRowDelimiter
* Row delimiter. For example, in a CSV format, '\n' is the
* typical row delimiter.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public CSVMappingParameters withRecordRowDelimiter(String recordRowDelimiter) {
setRecordRowDelimiter(recordRowDelimiter);
return this;
}
/**
*
* Column delimiter. For example, in a CSV format, a comma (",") is the
* typical column delimiter.
*
*
* @param recordColumnDelimiter
* Column delimiter. For example, in a CSV format, a comma (",") is
* the typical column delimiter.
*/
public void setRecordColumnDelimiter(String recordColumnDelimiter) {
this.recordColumnDelimiter = recordColumnDelimiter;
}
/**
*
* Column delimiter. For example, in a CSV format, a comma (",") is the
* typical column delimiter.
*
*
* @return Column delimiter. For example, in a CSV format, a comma (",") is
* the typical column delimiter.
*/
public String getRecordColumnDelimiter() {
return this.recordColumnDelimiter;
}
/**
*
* Column delimiter. For example, in a CSV format, a comma (",") is the
* typical column delimiter.
*
*
* @param recordColumnDelimiter
* Column delimiter. For example, in a CSV format, a comma (",") is
* the typical column delimiter.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public CSVMappingParameters withRecordColumnDelimiter(
String recordColumnDelimiter) {
setRecordColumnDelimiter(recordColumnDelimiter);
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getRecordRowDelimiter() != null)
sb.append("RecordRowDelimiter: " + getRecordRowDelimiter() + ",");
if (getRecordColumnDelimiter() != null)
sb.append("RecordColumnDelimiter: " + getRecordColumnDelimiter());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CSVMappingParameters == false)
return false;
CSVMappingParameters other = (CSVMappingParameters) obj;
if (other.getRecordRowDelimiter() == null
^ this.getRecordRowDelimiter() == null)
return false;
if (other.getRecordRowDelimiter() != null
&& other.getRecordRowDelimiter().equals(
this.getRecordRowDelimiter()) == false)
return false;
if (other.getRecordColumnDelimiter() == null
^ this.getRecordColumnDelimiter() == null)
return false;
if (other.getRecordColumnDelimiter() != null
&& other.getRecordColumnDelimiter().equals(
this.getRecordColumnDelimiter()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getRecordRowDelimiter() == null) ? 0
: getRecordRowDelimiter().hashCode());
hashCode = prime
* hashCode
+ ((getRecordColumnDelimiter() == null) ? 0
: getRecordColumnDelimiter().hashCode());
return hashCode;
}
@Override
public CSVMappingParameters clone() {
try {
return (CSVMappingParameters) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}