com.amazonaws.services.honeycode.model.CellInput Maven / Gradle / Ivy
Show all versions of aws-java-sdk-honeycode Show documentation
/*
* Copyright 2017-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.honeycode.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* CellInput object contains the data needed to create or update cells in a table.
*
*
*
* CellInput object has only a facts field or a fact field, but not both. A 400 bad request will be thrown if both fact
* and facts field are present.
*
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CellInput implements Serializable, Cloneable, StructuredPojo {
/**
*
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to
* start with the equals (=) sign.
*
*/
private String fact;
/**
*
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or
* rowIDs, and rowIDs should from the same table.
*
*/
private java.util.List facts;
/**
*
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to
* start with the equals (=) sign.
*
*
* @param fact
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas
* need to start with the equals (=) sign.
*/
public void setFact(String fact) {
this.fact = fact;
}
/**
*
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to
* start with the equals (=) sign.
*
*
* @return Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas
* need to start with the equals (=) sign.
*/
public String getFact() {
return this.fact;
}
/**
*
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to
* start with the equals (=) sign.
*
*
* @param fact
* Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas
* need to start with the equals (=) sign.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CellInput withFact(String fact) {
setFact(fact);
return this;
}
/**
*
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or
* rowIDs, and rowIDs should from the same table.
*
*
* @return A list representing the values that are entered into a ROWSET cell. Facts list can have either only
* values or rowIDs, and rowIDs should from the same table.
*/
public java.util.List getFacts() {
return facts;
}
/**
*
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or
* rowIDs, and rowIDs should from the same table.
*
*
* @param facts
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values
* or rowIDs, and rowIDs should from the same table.
*/
public void setFacts(java.util.Collection facts) {
if (facts == null) {
this.facts = null;
return;
}
this.facts = new java.util.ArrayList(facts);
}
/**
*
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or
* rowIDs, and rowIDs should from the same table.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setFacts(java.util.Collection)} or {@link #withFacts(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param facts
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values
* or rowIDs, and rowIDs should from the same table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CellInput withFacts(String... facts) {
if (this.facts == null) {
setFacts(new java.util.ArrayList(facts.length));
}
for (String ele : facts) {
this.facts.add(ele);
}
return this;
}
/**
*
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values or
* rowIDs, and rowIDs should from the same table.
*
*
* @param facts
* A list representing the values that are entered into a ROWSET cell. Facts list can have either only values
* or rowIDs, and rowIDs should from the same table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CellInput withFacts(java.util.Collection facts) {
setFacts(facts);
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 (getFact() != null)
sb.append("Fact: ").append("***Sensitive Data Redacted***").append(",");
if (getFacts() != null)
sb.append("Facts: ").append("***Sensitive Data Redacted***");
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CellInput == false)
return false;
CellInput other = (CellInput) obj;
if (other.getFact() == null ^ this.getFact() == null)
return false;
if (other.getFact() != null && other.getFact().equals(this.getFact()) == false)
return false;
if (other.getFacts() == null ^ this.getFacts() == null)
return false;
if (other.getFacts() != null && other.getFacts().equals(this.getFacts()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFact() == null) ? 0 : getFact().hashCode());
hashCode = prime * hashCode + ((getFacts() == null) ? 0 : getFacts().hashCode());
return hashCode;
}
@Override
public CellInput clone() {
try {
return (CellInput) 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.honeycode.model.transform.CellInputMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}