com.amazonaws.services.quicksight.model.FieldSeriesItem Maven / Gradle / Ivy
Show all versions of aws-java-sdk-quicksight Show documentation
/*
* Copyright 2019-2024 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.quicksight.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The field series item configuration of a line chart.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class FieldSeriesItem implements Serializable, Cloneable, StructuredPojo {
/**
*
* The field ID of the field for which you are setting the axis binding.
*
*/
private String fieldId;
/**
*
* The axis that you are binding the field to.
*
*/
private String axisBinding;
/**
*
* The options that determine the presentation of line series associated to the field.
*
*/
private LineChartSeriesSettings settings;
/**
*
* The field ID of the field for which you are setting the axis binding.
*
*
* @param fieldId
* The field ID of the field for which you are setting the axis binding.
*/
public void setFieldId(String fieldId) {
this.fieldId = fieldId;
}
/**
*
* The field ID of the field for which you are setting the axis binding.
*
*
* @return The field ID of the field for which you are setting the axis binding.
*/
public String getFieldId() {
return this.fieldId;
}
/**
*
* The field ID of the field for which you are setting the axis binding.
*
*
* @param fieldId
* The field ID of the field for which you are setting the axis binding.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public FieldSeriesItem withFieldId(String fieldId) {
setFieldId(fieldId);
return this;
}
/**
*
* The axis that you are binding the field to.
*
*
* @param axisBinding
* The axis that you are binding the field to.
* @see AxisBinding
*/
public void setAxisBinding(String axisBinding) {
this.axisBinding = axisBinding;
}
/**
*
* The axis that you are binding the field to.
*
*
* @return The axis that you are binding the field to.
* @see AxisBinding
*/
public String getAxisBinding() {
return this.axisBinding;
}
/**
*
* The axis that you are binding the field to.
*
*
* @param axisBinding
* The axis that you are binding the field to.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AxisBinding
*/
public FieldSeriesItem withAxisBinding(String axisBinding) {
setAxisBinding(axisBinding);
return this;
}
/**
*
* The axis that you are binding the field to.
*
*
* @param axisBinding
* The axis that you are binding the field to.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AxisBinding
*/
public FieldSeriesItem withAxisBinding(AxisBinding axisBinding) {
this.axisBinding = axisBinding.toString();
return this;
}
/**
*
* The options that determine the presentation of line series associated to the field.
*
*
* @param settings
* The options that determine the presentation of line series associated to the field.
*/
public void setSettings(LineChartSeriesSettings settings) {
this.settings = settings;
}
/**
*
* The options that determine the presentation of line series associated to the field.
*
*
* @return The options that determine the presentation of line series associated to the field.
*/
public LineChartSeriesSettings getSettings() {
return this.settings;
}
/**
*
* The options that determine the presentation of line series associated to the field.
*
*
* @param settings
* The options that determine the presentation of line series associated to the field.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public FieldSeriesItem withSettings(LineChartSeriesSettings settings) {
setSettings(settings);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getFieldId() != null)
sb.append("FieldId: ").append(getFieldId()).append(",");
if (getAxisBinding() != null)
sb.append("AxisBinding: ").append(getAxisBinding()).append(",");
if (getSettings() != null)
sb.append("Settings: ").append(getSettings());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof FieldSeriesItem == false)
return false;
FieldSeriesItem other = (FieldSeriesItem) obj;
if (other.getFieldId() == null ^ this.getFieldId() == null)
return false;
if (other.getFieldId() != null && other.getFieldId().equals(this.getFieldId()) == false)
return false;
if (other.getAxisBinding() == null ^ this.getAxisBinding() == null)
return false;
if (other.getAxisBinding() != null && other.getAxisBinding().equals(this.getAxisBinding()) == false)
return false;
if (other.getSettings() == null ^ this.getSettings() == null)
return false;
if (other.getSettings() != null && other.getSettings().equals(this.getSettings()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFieldId() == null) ? 0 : getFieldId().hashCode());
hashCode = prime * hashCode + ((getAxisBinding() == null) ? 0 : getAxisBinding().hashCode());
hashCode = prime * hashCode + ((getSettings() == null) ? 0 : getSettings().hashCode());
return hashCode;
}
@Override
public FieldSeriesItem clone() {
try {
return (FieldSeriesItem) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.quicksight.model.transform.FieldSeriesItemMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}