Package dev.array21.espocrm.types
Enum Class FilterType
- All Implemented Interfaces:
Serializable,Comparable<FilterType>,Constable
The FilterType to use in a Where filter.
Refer to the EspoCRM documentation for more information
Refer to the EspoCRM documentation for more information
- Since:
- 1.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptiontoString()Returns the String value of this Enum in lowerCamelCase as required by the EspoCRM APIstatic FilterTypeReturns the enum constant of this class with the specified name.static FilterType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUALS
-
NOT_EQUALS
-
GREATER_THAN
-
LESS_THAN
-
GREATER_THAN_OR_EQUALS
-
LESS_THAN_OR_EQUALS
-
IS_NULL
-
IS_NOT_NULL
-
IS_TRUE
-
IS_FALSE
-
LINKED_WITH
-
NOT_LINKED_WIDTH
-
IS_LINKED
-
IS_NOT_LINKED
-
IN
-
NOT_IN
-
CONTAINS
-
NOT_CONTAINS
-
STARTS_WITH
-
ENDS_WITH
-
LIKE
-
NOT_LIKE
-
OR
-
AND
-
TODAY
-
PAST
-
FUTURE
-
LAST_SEVEN_DAYS
-
CURRENT_MONTH
-
LAST_MONTH
-
CURRENT_QUARTER
-
LAST_QUARTER
-
CURRENT_YEAR
-
LAST_YEAR
-
CURRENT_FISCAL_YEAR
-
LAST_FISCAL_YEAR
-
CURRENT_FISCAL_QUARTER
-
LAST_FISCAL_QUARTER
-
LAST_X_DAYS
-
NEXT_X_DAYS
-
OLDER_THAN_X_DAYS
-
AFTER_X_DAYS
-
BETWEEN
-
ARRAY_ANY_OF
-
ARRAY_NONE_OF
-
ARRAY_ALL_OF
-
ARRAY_IS_EMPTY
-
ARRAY_IS_NOT_EMPTY
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
Returns the String value of this Enum in lowerCamelCase as required by the EspoCRM API- Overrides:
toStringin classEnum<FilterType>
-