/* * Copyright 2012-2017 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.elasticbeanstalk.model; import java.io.Serializable; import javax.annotation.Generated; /** * <p> * Specify criteria to restrict the results when listing custom platforms. * </p> * <p> * The filter is evaluated as the expression: * </p> * <p> * <code>Type</code> <code>Operator</code> <code>Values[i]</code> * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/PlatformFilter" target="_top">AWS * API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PlatformFilter implements Serializable, Cloneable { /** * <p> * The custom platform attribute to which the filter values are applied. * </p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> * </p> */ private String type; /** * <p> * The operator to apply to the <code>Type</code> with each of the <code>Values</code>. * </p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> (greater than * or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> * </p> */ private String operator; /** * <p> * The list of values applied to the custom platform attribute. * </p> */ private com.amazonaws.internal.SdkInternalList<String> values; /** * <p> * The custom platform attribute to which the filter values are applied. * </p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> * </p> * * @param type * The custom platform attribute to which the filter values are applied.</p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> */ public void setType(String type) { this.type = type; } /** * <p> * The custom platform attribute to which the filter values are applied. * </p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> * </p> * * @return The custom platform attribute to which the filter values are applied.</p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> */ public String getType() { return this.type; } /** * <p> * The custom platform attribute to which the filter values are applied. * </p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> * </p> * * @param type * The custom platform attribute to which the filter values are applied.</p> * <p> * Valid Values: <code>PlatformName</code> | <code>PlatformVersion</code> | <code>PlatformStatus</code> | * <code>PlatformOwner</code> * @return Returns a reference to this object so that method calls can be chained together. */ public PlatformFilter withType(String type) { setType(type); return this; } /** * <p> * The operator to apply to the <code>Type</code> with each of the <code>Values</code>. * </p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> (greater than * or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> * </p> * * @param operator * The operator to apply to the <code>Type</code> with each of the <code>Values</code>.</p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> * (greater than or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> */ public void setOperator(String operator) { this.operator = operator; } /** * <p> * The operator to apply to the <code>Type</code> with each of the <code>Values</code>. * </p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> (greater than * or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> * </p> * * @return The operator to apply to the <code>Type</code> with each of the <code>Values</code>.</p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) * | <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> * (greater than or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> */ public String getOperator() { return this.operator; } /** * <p> * The operator to apply to the <code>Type</code> with each of the <code>Values</code>. * </p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> (greater than * or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> * </p> * * @param operator * The operator to apply to the <code>Type</code> with each of the <code>Values</code>.</p> * <p> * Valid Values: <code>=</code> (equal to) | <code>!=</code> (not equal to) | <code><</code> (less than) | * <code><=</code> (less than or equal to) | <code>></code> (greater than) | <code>>=</code> * (greater than or equal to) | <code>contains</code> | <code>begins_with</code> | <code>ends_with</code> * @return Returns a reference to this object so that method calls can be chained together. */ public PlatformFilter withOperator(String operator) { setOperator(operator); return this; } /** * <p> * The list of values applied to the custom platform attribute. * </p> * * @return The list of values applied to the custom platform attribute. */ public java.util.List<String> getValues() { if (values == null) { values = new com.amazonaws.internal.SdkInternalList<String>(); } return values; } /** * <p> * The list of values applied to the custom platform attribute. * </p> * * @param values * The list of values applied to the custom platform attribute. */ public void setValues(java.util.Collection<String> values) { if (values == null) { this.values = null; return; } this.values = new com.amazonaws.internal.SdkInternalList<String>(values); } /** * <p> * The list of values applied to the custom platform attribute. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setValues(java.util.Collection)} or {@link #withValues(java.util.Collection)} if you want to override the * existing values. * </p> * * @param values * The list of values applied to the custom platform attribute. * @return Returns a reference to this object so that method calls can be chained together. */ public PlatformFilter withValues(String... values) { if (this.values == null) { setValues(new com.amazonaws.internal.SdkInternalList<String>(values.length)); } for (String ele : values) { this.values.add(ele); } return this; } /** * <p> * The list of values applied to the custom platform attribute. * </p> * * @param values * The list of values applied to the custom platform attribute. * @return Returns a reference to this object so that method calls can be chained together. */ public PlatformFilter withValues(java.util.Collection<String> values) { setValues(values); 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 (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getOperator() != null) sb.append("Operator: ").append(getOperator()).append(","); if (getValues() != null) sb.append("Values: ").append(getValues()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PlatformFilter == false) return false; PlatformFilter other = (PlatformFilter) obj; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getOperator() == null ^ this.getOperator() == null) return false; if (other.getOperator() != null && other.getOperator().equals(this.getOperator()) == false) return false; if (other.getValues() == null ^ this.getValues() == null) return false; if (other.getValues() != null && other.getValues().equals(this.getValues()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getOperator() == null) ? 0 : getOperator().hashCode()); hashCode = prime * hashCode + ((getValues() == null) ? 0 : getValues().hashCode()); return hashCode; } @Override public PlatformFilter clone() { try { return (PlatformFilter) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }