Package com.sforce.soap.metadata
Enum FlowRecordFilterOperator
- java.lang.Object
-
- java.lang.Enum<FlowRecordFilterOperator>
-
- com.sforce.soap.metadata.FlowRecordFilterOperator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FlowRecordFilterOperator>
public enum FlowRecordFilterOperator extends java.lang.Enum<FlowRecordFilterOperator>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ContainsEnumeration : ContainsEndsWithEnumeration : EndsWithEqualToEnumeration : EqualToGreaterThanEnumeration : GreaterThanGreaterThanOrEqualToEnumeration : GreaterThanOrEqualToIsNullEnumeration : IsNullLessThanEnumeration : LessThanLessThanOrEqualToEnumeration : LessThanOrEqualToNotEqualToEnumeration : NotEqualToStartsWithEnumeration : StartsWith
-
Field Summary
Fields Modifier and Type Field Description static java.util.Map<java.lang.String,java.lang.String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static FlowRecordFilterOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FlowRecordFilterOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EqualTo
public static final FlowRecordFilterOperator EqualTo
Enumeration : EqualTo
-
NotEqualTo
public static final FlowRecordFilterOperator NotEqualTo
Enumeration : NotEqualTo
-
GreaterThan
public static final FlowRecordFilterOperator GreaterThan
Enumeration : GreaterThan
-
LessThan
public static final FlowRecordFilterOperator LessThan
Enumeration : LessThan
-
GreaterThanOrEqualTo
public static final FlowRecordFilterOperator GreaterThanOrEqualTo
Enumeration : GreaterThanOrEqualTo
-
LessThanOrEqualTo
public static final FlowRecordFilterOperator LessThanOrEqualTo
Enumeration : LessThanOrEqualTo
-
StartsWith
public static final FlowRecordFilterOperator StartsWith
Enumeration : StartsWith
-
EndsWith
public static final FlowRecordFilterOperator EndsWith
Enumeration : EndsWith
-
Contains
public static final FlowRecordFilterOperator Contains
Enumeration : Contains
-
IsNull
public static final FlowRecordFilterOperator IsNull
Enumeration : IsNull
-
-
Method Detail
-
values
public static FlowRecordFilterOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FlowRecordFilterOperator c : FlowRecordFilterOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowRecordFilterOperator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<FlowRecordFilterOperator>
-
-