Package com.sforce.soap.metadata
Enum FlowAssignmentOperator
- java.lang.Object
-
- java.lang.Enum<FlowAssignmentOperator>
-
- com.sforce.soap.metadata.FlowAssignmentOperator
-
- All Implemented Interfaces:
Serializable,Comparable<FlowAssignmentOperator>
public enum FlowAssignmentOperator extends Enum<FlowAssignmentOperator>
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 AddEnumeration : AddAddAtStartEnumeration : AddAtStartAddItemEnumeration : AddItemAssignEnumeration : AssignAssignCountEnumeration : AssignCountNoneEnumeration : NoneRemoveAfterFirstEnumeration : RemoveAfterFirstRemoveAllEnumeration : RemoveAllRemoveBeforeFirstEnumeration : RemoveBeforeFirstRemoveFirstEnumeration : RemoveFirstRemovePositionEnumeration : RemovePositionRemoveUncommonEnumeration : RemoveUncommonSubtractEnumeration : Subtract
-
Field Summary
Fields Modifier and Type Field Description static Map<String,String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static FlowAssignmentOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static FlowAssignmentOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final FlowAssignmentOperator None
Enumeration : None
-
Assign
public static final FlowAssignmentOperator Assign
Enumeration : Assign
-
Add
public static final FlowAssignmentOperator Add
Enumeration : Add
-
Subtract
public static final FlowAssignmentOperator Subtract
Enumeration : Subtract
-
AddItem
public static final FlowAssignmentOperator AddItem
Enumeration : AddItem
-
RemoveFirst
public static final FlowAssignmentOperator RemoveFirst
Enumeration : RemoveFirst
-
RemoveBeforeFirst
public static final FlowAssignmentOperator RemoveBeforeFirst
Enumeration : RemoveBeforeFirst
-
RemoveAfterFirst
public static final FlowAssignmentOperator RemoveAfterFirst
Enumeration : RemoveAfterFirst
-
RemoveAll
public static final FlowAssignmentOperator RemoveAll
Enumeration : RemoveAll
-
AddAtStart
public static final FlowAssignmentOperator AddAtStart
Enumeration : AddAtStart
-
RemoveUncommon
public static final FlowAssignmentOperator RemoveUncommon
Enumeration : RemoveUncommon
-
AssignCount
public static final FlowAssignmentOperator AssignCount
Enumeration : AssignCount
-
RemovePosition
public static final FlowAssignmentOperator RemovePosition
Enumeration : RemovePosition
-
-
Method Detail
-
values
public static FlowAssignmentOperator[] 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 (FlowAssignmentOperator c : FlowAssignmentOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowAssignmentOperator valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<FlowAssignmentOperator>
-
-