- All Implemented Interfaces:
Serializable
,Comparable<LikeType>
Used to specify the type of like matching used.
-
Enum Constant Summary
Enum ConstantDescriptionThe % wildcard is added to the beginning and end of the search word and search word is escaped.The % wildcard is added to the beginning of the search word and search word is escaped.Uses equal to rather than a LIKE with wildcards.You need to put in your own wildcards - no escaping is performed.The % wildcard is added to the end of the search word and search word is escaped. -
Method Summary
-
Enum Constant Details
-
RAW
You need to put in your own wildcards - no escaping is performed. -
STARTS_WITH
The % wildcard is added to the end of the search word and search word is escaped. -
ENDS_WITH
The % wildcard is added to the beginning of the search word and search word is escaped. -
CONTAINS
The % wildcard is added to the beginning and end of the search word and search word is escaped. -
EQUAL_TO
Uses equal to rather than a LIKE with wildcards.This is mainly here to be available for use with ExampleExpression.
-
-
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
-