156 lines
2.0 KiB
Java
156 lines
2.0 KiB
Java
|
|
package com.sforce.soap.tooling;
|
||
|
|
|
||
|
|
import java.util.EnumSet;
|
||
|
|
import java.util.HashMap;
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public enum FlowComparisonOperator {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : None
|
||
|
|
*/
|
||
|
|
None("None"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : EqualTo
|
||
|
|
*/
|
||
|
|
EqualTo("EqualTo"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : NotEqualTo
|
||
|
|
*/
|
||
|
|
NotEqualTo("NotEqualTo"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : GreaterThan
|
||
|
|
*/
|
||
|
|
GreaterThan("GreaterThan"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : LessThan
|
||
|
|
*/
|
||
|
|
LessThan("LessThan"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : GreaterThanOrEqualTo
|
||
|
|
*/
|
||
|
|
GreaterThanOrEqualTo("GreaterThanOrEqualTo"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : LessThanOrEqualTo
|
||
|
|
*/
|
||
|
|
LessThanOrEqualTo("LessThanOrEqualTo"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : StartsWith
|
||
|
|
*/
|
||
|
|
StartsWith("StartsWith"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : EndsWith
|
||
|
|
*/
|
||
|
|
EndsWith("EndsWith"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : Contains
|
||
|
|
*/
|
||
|
|
Contains("Contains"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : IsNull
|
||
|
|
*/
|
||
|
|
IsNull("IsNull"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : IsChanged
|
||
|
|
*/
|
||
|
|
IsChanged("IsChanged"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : WasSet
|
||
|
|
*/
|
||
|
|
WasSet("WasSet"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : WasSelected
|
||
|
|
*/
|
||
|
|
WasSelected("WasSelected"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : WasVisited
|
||
|
|
*/
|
||
|
|
WasVisited("WasVisited"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : In
|
||
|
|
*/
|
||
|
|
In("In"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : NotIn
|
||
|
|
*/
|
||
|
|
NotIn("NotIn"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : IsBlank
|
||
|
|
*/
|
||
|
|
IsBlank("IsBlank"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : IsEmpty
|
||
|
|
*/
|
||
|
|
IsEmpty("IsEmpty"),
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enumeration : HasError
|
||
|
|
*/
|
||
|
|
HasError("HasError"),
|
||
|
|
|
||
|
|
;
|
||
|
|
|
||
|
|
public static Map<String, String> valuesToEnums;
|
||
|
|
|
||
|
|
static {
|
||
|
|
valuesToEnums = new HashMap<String, String>();
|
||
|
|
for (FlowComparisonOperator e : EnumSet.allOf(FlowComparisonOperator.class)) {
|
||
|
|
valuesToEnums.put(e.toString(), e.name());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private String value;
|
||
|
|
|
||
|
|
private FlowComparisonOperator(String value) {
|
||
|
|
this.value = value;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return value;
|
||
|
|
}
|
||
|
|
}
|