/* * 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.datapipeline.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains a logical operation for comparing the value of a field with a specified value. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Operator implements Serializable, Cloneable, StructuredPojo { /** *
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
*/ private String type; /** ** The value that the actual field value will be compared with. *
*/ private com.amazonaws.internal.SdkInternalList
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
* * @param type * The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
),
* less than or equal (LE
), greater than or equal (GE
), or between (
* BETWEEN
). Equal reference (REF_EQ
) can be used only with reference fields. The
* other comparison types can be used only with String fields. The comparison types you can use apply only to
* certain object fields, as detailed below.
* * The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following
* fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name * fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS * Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string * "my". * @see OperatorType */ public void setType(String type) { this.type = type; } /** *
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
* * @return The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
),
* less than or equal (LE
), greater than or equal (GE
), or between (
* BETWEEN
). Equal reference (REF_EQ
) can be used only with reference fields. The
* other comparison types can be used only with String fields. The comparison types you can use apply only
* to certain object fields, as detailed below.
* * The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following
* fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name * fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS * Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string * "my". * @see OperatorType */ public String getType() { return this.type; } /** *
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
* * @param type * The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
),
* less than or equal (LE
), greater than or equal (GE
), or between (
* BETWEEN
). Equal reference (REF_EQ
) can be used only with reference fields. The
* other comparison types can be used only with String fields. The comparison types you can use apply only to
* certain object fields, as detailed below.
* * The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following
* fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name * fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS * Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string * "my". * @return Returns a reference to this object so that method calls can be chained together. * @see OperatorType */ public Operator withType(String type) { setType(type); return this; } /** *
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
* * @param type * The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
),
* less than or equal (LE
), greater than or equal (GE
), or between (
* BETWEEN
). Equal reference (REF_EQ
) can be used only with reference fields. The
* other comparison types can be used only with String fields. The comparison types you can use apply only to
* certain object fields, as detailed below.
* * The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following
* fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name * fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS * Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string * "my". * @see OperatorType */ public void setType(OperatorType type) { withType(type); } /** *
* The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
), less than
* or equal (LE
), greater than or equal (GE
), or between (BETWEEN
). Equal
* reference (REF_EQ
) can be used only with reference fields. The other comparison types can be used
* only with String fields. The comparison types you can use apply only to certain object fields, as detailed below.
*
* The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, * you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. * User-defined fields that you add to a pipeline should prefix their name with the string "my". *
* * @param type * The logical operation to be performed: equal (EQ
), equal reference (REF_EQ
),
* less than or equal (LE
), greater than or equal (GE
), or between (
* BETWEEN
). Equal reference (REF_EQ
) can be used only with reference fields. The
* other comparison types can be used only with String fields. The comparison types you can use apply only to
* certain object fields, as detailed below.
* * The comparison operators EQ and REF_EQ act on the following fields: *
*
* The comparison operators GE
, LE
, and BETWEEN
act on the following
* fields:
*
* Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name * fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS * Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string * "my". * @return Returns a reference to this object so that method calls can be chained together. * @see OperatorType */ public Operator withType(OperatorType type) { this.type = type.toString(); return this; } /** *
* The value that the actual field value will be compared with. *
* * @return The value that the actual field value will be compared with. */ public java.util.List* The value that the actual field value will be compared with. *
* * @param values * The value that the actual field value will be compared with. */ public void setValues(java.util.Collection* The value that the actual field value will be compared with. *
** NOTE: 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. *
* * @param values * The value that the actual field value will be compared with. * @return Returns a reference to this object so that method calls can be chained together. */ public Operator withValues(String... values) { if (this.values == null) { setValues(new com.amazonaws.internal.SdkInternalList* The value that the actual field value will be compared with. *
* * @param values * The value that the actual field value will be compared with. * @return Returns a reference to this object so that method calls can be chained together. */ public Operator withValues(java.util.Collection