Package com.docusign.maestro.model
Enum DSWorkflowComparisonOperatorTypes
- java.lang.Object
-
- java.lang.Enum<DSWorkflowComparisonOperatorTypes>
-
- com.docusign.maestro.model.DSWorkflowComparisonOperatorTypes
-
- All Implemented Interfaces:
Serializable,Comparable<DSWorkflowComparisonOperatorTypes>
public enum DSWorkflowComparisonOperatorTypes extends Enum<DSWorkflowComparisonOperatorTypes>
Gets or Sets DSWorkflowComparisonOperatorTypes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSENDSWITHEQUALGREATERTHANGREATERTHANOREQUALLESSTHANLESSTHANOREQUALNOTCONTAINSNOTENDSWITHNOTEQUALNOTSTARTSWITHSTARTSWITH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DSWorkflowComparisonOperatorTypesfromValue(String value)StringgetValue()StringtoString()static DSWorkflowComparisonOperatorTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static DSWorkflowComparisonOperatorTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINS
public static final DSWorkflowComparisonOperatorTypes CONTAINS
-
NOTCONTAINS
public static final DSWorkflowComparisonOperatorTypes NOTCONTAINS
-
EQUAL
public static final DSWorkflowComparisonOperatorTypes EQUAL
-
NOTEQUAL
public static final DSWorkflowComparisonOperatorTypes NOTEQUAL
-
GREATERTHAN
public static final DSWorkflowComparisonOperatorTypes GREATERTHAN
-
GREATERTHANOREQUAL
public static final DSWorkflowComparisonOperatorTypes GREATERTHANOREQUAL
-
LESSTHAN
public static final DSWorkflowComparisonOperatorTypes LESSTHAN
-
LESSTHANOREQUAL
public static final DSWorkflowComparisonOperatorTypes LESSTHANOREQUAL
-
STARTSWITH
public static final DSWorkflowComparisonOperatorTypes STARTSWITH
-
NOTSTARTSWITH
public static final DSWorkflowComparisonOperatorTypes NOTSTARTSWITH
-
ENDSWITH
public static final DSWorkflowComparisonOperatorTypes ENDSWITH
-
NOTENDSWITH
public static final DSWorkflowComparisonOperatorTypes NOTENDSWITH
-
-
Method Detail
-
values
public static DSWorkflowComparisonOperatorTypes[] 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 (DSWorkflowComparisonOperatorTypes c : DSWorkflowComparisonOperatorTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DSWorkflowComparisonOperatorTypes 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<DSWorkflowComparisonOperatorTypes>
-
fromValue
public static DSWorkflowComparisonOperatorTypes fromValue(String value)
-
-