Enum PropertyConditional.DefaultOperators
java.lang.Object
java.lang.Enum<PropertyConditional.DefaultOperators>
com.broadleafcommerce.metadata.dsl.core.extension.conditionals.PropertyConditional.DefaultOperators
- All Implemented Interfaces:
Serializable
,Comparable<PropertyConditional.DefaultOperators>
- Enclosing interface:
- PropertyConditional<C extends PropertyConditional<C>>
public static enum PropertyConditional.DefaultOperators
extends Enum<PropertyConditional.DefaultOperators>
The default set of common supported operators.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static PropertyConditional.DefaultOperators[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQUALS
-
NOT_EQUALS
-
EXISTS
-
NOT_BLANK
-
NONE
Opposite ofEXISTS
-
GREATER_THAN
-
LESS_THAN
-
GREATER_THAN_OR_EQUAL_TO
-
LESS_THAN_OR_EQUAL_TO
-
CONTAINS
-
CONTAINS_IGNORE_CASE
-
NOT_CONTAINS
-
NOT_CONTAINS_IGNORE_CASE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-