Package org.openiam.constants
Enum BusinessRuleExpressionOperationEnum
- java.lang.Object
-
- java.lang.Enum<BusinessRuleExpressionOperationEnum>
-
- org.openiam.constants.BusinessRuleExpressionOperationEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<BusinessRuleExpressionOperationEnum>
public enum BusinessRuleExpressionOperationEnum extends Enum<BusinessRuleExpressionOperationEnum>
- Author:
- zaporozhec
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_MATCH
ANY_MATCH
CONTAINS
CONTAINS_IGNORE_CASE
ENDS_WITH
EQUALS
EQUALS_IGNORE_CASE
GREATER_THAN
IS_NULL
LESS_THAN
START_WITH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BusinessRuleExpressionOperationEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static BusinessRuleExpressionOperationEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_MATCH
public static final BusinessRuleExpressionOperationEnum ALL_MATCH
-
EQUALS
public static final BusinessRuleExpressionOperationEnum EQUALS
-
EQUALS_IGNORE_CASE
public static final BusinessRuleExpressionOperationEnum EQUALS_IGNORE_CASE
-
LESS_THAN
public static final BusinessRuleExpressionOperationEnum LESS_THAN
-
GREATER_THAN
public static final BusinessRuleExpressionOperationEnum GREATER_THAN
-
ANY_MATCH
public static final BusinessRuleExpressionOperationEnum ANY_MATCH
-
START_WITH
public static final BusinessRuleExpressionOperationEnum START_WITH
-
ENDS_WITH
public static final BusinessRuleExpressionOperationEnum ENDS_WITH
-
CONTAINS
public static final BusinessRuleExpressionOperationEnum CONTAINS
-
CONTAINS_IGNORE_CASE
public static final BusinessRuleExpressionOperationEnum CONTAINS_IGNORE_CASE
-
IS_NULL
public static final BusinessRuleExpressionOperationEnum IS_NULL
-
-
Method Detail
-
values
public static BusinessRuleExpressionOperationEnum[] 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 (BusinessRuleExpressionOperationEnum c : BusinessRuleExpressionOperationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BusinessRuleExpressionOperationEnum 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
-
-