/* * Copyright 2018-2023 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; /** * <p> * A pivot table. * </p> * <p> * For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/pivot-table.html">Using pivot * tables</a> in the <i>Amazon QuickSight User Guide</i>. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableVisual" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PivotTableVisual implements Serializable, Cloneable, StructuredPojo { /** * <p> * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or * analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. * </p> */ private String visualId; /** * <p> * The title that is displayed on the visual. * </p> */ private VisualTitleLabelOptions title; /** * <p> * The subtitle that is displayed on the visual. * </p> */ private VisualSubtitleLabelOptions subtitle; /** * <p> * The configuration settings of the visual. * </p> */ private PivotTableConfiguration chartConfiguration; /** * <p> * The conditional formatting for a <code>PivotTableVisual</code>. * </p> */ private PivotTableConditionalFormatting conditionalFormatting; /** * <p> * The list of custom actions that are configured for a visual. * </p> */ private java.util.List<VisualCustomAction> actions; /** * <p> * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or * analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. * </p> * * @param visualId * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, * template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. */ public void setVisualId(String visualId) { this.visualId = visualId; } /** * <p> * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or * analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. * </p> * * @return The unique identifier of a visual. This identifier must be unique within the context of a dashboard, * template, or analysis. Two dashboards, analyses, or templates can have visuals with the same * identifiers.. */ public String getVisualId() { return this.visualId; } /** * <p> * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or * analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. * </p> * * @param visualId * The unique identifier of a visual. This identifier must be unique within the context of a dashboard, * template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withVisualId(String visualId) { setVisualId(visualId); return this; } /** * <p> * The title that is displayed on the visual. * </p> * * @param title * The title that is displayed on the visual. */ public void setTitle(VisualTitleLabelOptions title) { this.title = title; } /** * <p> * The title that is displayed on the visual. * </p> * * @return The title that is displayed on the visual. */ public VisualTitleLabelOptions getTitle() { return this.title; } /** * <p> * The title that is displayed on the visual. * </p> * * @param title * The title that is displayed on the visual. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withTitle(VisualTitleLabelOptions title) { setTitle(title); return this; } /** * <p> * The subtitle that is displayed on the visual. * </p> * * @param subtitle * The subtitle that is displayed on the visual. */ public void setSubtitle(VisualSubtitleLabelOptions subtitle) { this.subtitle = subtitle; } /** * <p> * The subtitle that is displayed on the visual. * </p> * * @return The subtitle that is displayed on the visual. */ public VisualSubtitleLabelOptions getSubtitle() { return this.subtitle; } /** * <p> * The subtitle that is displayed on the visual. * </p> * * @param subtitle * The subtitle that is displayed on the visual. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withSubtitle(VisualSubtitleLabelOptions subtitle) { setSubtitle(subtitle); return this; } /** * <p> * The configuration settings of the visual. * </p> * * @param chartConfiguration * The configuration settings of the visual. */ public void setChartConfiguration(PivotTableConfiguration chartConfiguration) { this.chartConfiguration = chartConfiguration; } /** * <p> * The configuration settings of the visual. * </p> * * @return The configuration settings of the visual. */ public PivotTableConfiguration getChartConfiguration() { return this.chartConfiguration; } /** * <p> * The configuration settings of the visual. * </p> * * @param chartConfiguration * The configuration settings of the visual. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withChartConfiguration(PivotTableConfiguration chartConfiguration) { setChartConfiguration(chartConfiguration); return this; } /** * <p> * The conditional formatting for a <code>PivotTableVisual</code>. * </p> * * @param conditionalFormatting * The conditional formatting for a <code>PivotTableVisual</code>. */ public void setConditionalFormatting(PivotTableConditionalFormatting conditionalFormatting) { this.conditionalFormatting = conditionalFormatting; } /** * <p> * The conditional formatting for a <code>PivotTableVisual</code>. * </p> * * @return The conditional formatting for a <code>PivotTableVisual</code>. */ public PivotTableConditionalFormatting getConditionalFormatting() { return this.conditionalFormatting; } /** * <p> * The conditional formatting for a <code>PivotTableVisual</code>. * </p> * * @param conditionalFormatting * The conditional formatting for a <code>PivotTableVisual</code>. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withConditionalFormatting(PivotTableConditionalFormatting conditionalFormatting) { setConditionalFormatting(conditionalFormatting); return this; } /** * <p> * The list of custom actions that are configured for a visual. * </p> * * @return The list of custom actions that are configured for a visual. */ public java.util.List<VisualCustomAction> getActions() { return actions; } /** * <p> * The list of custom actions that are configured for a visual. * </p> * * @param actions * The list of custom actions that are configured for a visual. */ public void setActions(java.util.Collection<VisualCustomAction> actions) { if (actions == null) { this.actions = null; return; } this.actions = new java.util.ArrayList<VisualCustomAction>(actions); } /** * <p> * The list of custom actions that are configured for a visual. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setActions(java.util.Collection)} or {@link #withActions(java.util.Collection)} if you want to override * the existing values. * </p> * * @param actions * The list of custom actions that are configured for a visual. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withActions(VisualCustomAction... actions) { if (this.actions == null) { setActions(new java.util.ArrayList<VisualCustomAction>(actions.length)); } for (VisualCustomAction ele : actions) { this.actions.add(ele); } return this; } /** * <p> * The list of custom actions that are configured for a visual. * </p> * * @param actions * The list of custom actions that are configured for a visual. * @return Returns a reference to this object so that method calls can be chained together. */ public PivotTableVisual withActions(java.util.Collection<VisualCustomAction> actions) { setActions(actions); 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 (getVisualId() != null) sb.append("VisualId: ").append(getVisualId()).append(","); if (getTitle() != null) sb.append("Title: ").append(getTitle()).append(","); if (getSubtitle() != null) sb.append("Subtitle: ").append(getSubtitle()).append(","); if (getChartConfiguration() != null) sb.append("ChartConfiguration: ").append(getChartConfiguration()).append(","); if (getConditionalFormatting() != null) sb.append("ConditionalFormatting: ").append(getConditionalFormatting()).append(","); if (getActions() != null) sb.append("Actions: ").append(getActions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PivotTableVisual == false) return false; PivotTableVisual other = (PivotTableVisual) obj; if (other.getVisualId() == null ^ this.getVisualId() == null) return false; if (other.getVisualId() != null && other.getVisualId().equals(this.getVisualId()) == false) return false; if (other.getTitle() == null ^ this.getTitle() == null) return false; if (other.getTitle() != null && other.getTitle().equals(this.getTitle()) == false) return false; if (other.getSubtitle() == null ^ this.getSubtitle() == null) return false; if (other.getSubtitle() != null && other.getSubtitle().equals(this.getSubtitle()) == false) return false; if (other.getChartConfiguration() == null ^ this.getChartConfiguration() == null) return false; if (other.getChartConfiguration() != null && other.getChartConfiguration().equals(this.getChartConfiguration()) == false) return false; if (other.getConditionalFormatting() == null ^ this.getConditionalFormatting() == null) return false; if (other.getConditionalFormatting() != null && other.getConditionalFormatting().equals(this.getConditionalFormatting()) == false) return false; if (other.getActions() == null ^ this.getActions() == null) return false; if (other.getActions() != null && other.getActions().equals(this.getActions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVisualId() == null) ? 0 : getVisualId().hashCode()); hashCode = prime * hashCode + ((getTitle() == null) ? 0 : getTitle().hashCode()); hashCode = prime * hashCode + ((getSubtitle() == null) ? 0 : getSubtitle().hashCode()); hashCode = prime * hashCode + ((getChartConfiguration() == null) ? 0 : getChartConfiguration().hashCode()); hashCode = prime * hashCode + ((getConditionalFormatting() == null) ? 0 : getConditionalFormatting().hashCode()); hashCode = prime * hashCode + ((getActions() == null) ? 0 : getActions().hashCode()); return hashCode; } @Override public PivotTableVisual clone() { try { return (PivotTableVisual) 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.PivotTableVisualMarshaller.getInstance().marshall(this, protocolMarshaller); } }