/* * 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.personalizeruntime.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetPersonalizedRankingResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* A list of items in order of most likely interest to the user. The maximum is 500. *

*/ private java.util.List personalizedRanking; /** *

* The ID of the recommendation. *

*/ private String recommendationId; /** *

* A list of items in order of most likely interest to the user. The maximum is 500. *

* * @return A list of items in order of most likely interest to the user. The maximum is 500. */ public java.util.List getPersonalizedRanking() { return personalizedRanking; } /** *

* A list of items in order of most likely interest to the user. The maximum is 500. *

* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. */ public void setPersonalizedRanking(java.util.Collection personalizedRanking) { if (personalizedRanking == null) { this.personalizedRanking = null; return; } this.personalizedRanking = new java.util.ArrayList(personalizedRanking); } /** *

* A list of items in order of most likely interest to the user. The maximum is 500. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setPersonalizedRanking(java.util.Collection)} or {@link #withPersonalizedRanking(java.util.Collection)} * if you want to override the existing values. *

* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withPersonalizedRanking(PredictedItem... personalizedRanking) { if (this.personalizedRanking == null) { setPersonalizedRanking(new java.util.ArrayList(personalizedRanking.length)); } for (PredictedItem ele : personalizedRanking) { this.personalizedRanking.add(ele); } return this; } /** *

* A list of items in order of most likely interest to the user. The maximum is 500. *

* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withPersonalizedRanking(java.util.Collection personalizedRanking) { setPersonalizedRanking(personalizedRanking); return this; } /** *

* The ID of the recommendation. *

* * @param recommendationId * The ID of the recommendation. */ public void setRecommendationId(String recommendationId) { this.recommendationId = recommendationId; } /** *

* The ID of the recommendation. *

* * @return The ID of the recommendation. */ public String getRecommendationId() { return this.recommendationId; } /** *

* The ID of the recommendation. *

* * @param recommendationId * The ID of the recommendation. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withRecommendationId(String recommendationId) { setRecommendationId(recommendationId); 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 (getPersonalizedRanking() != null) sb.append("PersonalizedRanking: ").append(getPersonalizedRanking()).append(","); if (getRecommendationId() != null) sb.append("RecommendationId: ").append(getRecommendationId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetPersonalizedRankingResult == false) return false; GetPersonalizedRankingResult other = (GetPersonalizedRankingResult) obj; if (other.getPersonalizedRanking() == null ^ this.getPersonalizedRanking() == null) return false; if (other.getPersonalizedRanking() != null && other.getPersonalizedRanking().equals(this.getPersonalizedRanking()) == false) return false; if (other.getRecommendationId() == null ^ this.getRecommendationId() == null) return false; if (other.getRecommendationId() != null && other.getRecommendationId().equals(this.getRecommendationId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPersonalizedRanking() == null) ? 0 : getPersonalizedRanking().hashCode()); hashCode = prime * hashCode + ((getRecommendationId() == null) ? 0 : getRecommendationId().hashCode()); return hashCode; } @Override public GetPersonalizedRankingResult clone() { try { return (GetPersonalizedRankingResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }