org.hibernate.criterion
abstract public class: MatchMode [javadoc |
source]
java.lang.Object
org.hibernate.criterion.MatchMode
All Implemented Interfaces:
Serializable
Represents an strategy for matching strings using "like".
Also see:
- Example#enableLike(MatchMode)
- author:
Gavin - King
| Field Summary |
|---|
| public static final MatchMode | EXACT | Match the entire string to the pattern |
| public static final MatchMode | START | Match the start of the string to the pattern |
| public static final MatchMode | END | Match the end of the string to the pattern |
| public static final MatchMode | ANYWHERE | Match the pattern anywhere in the string |