Uses of Class
com.github.longdt.vertxorm.repository.query.Like
-
Packages that use Like Package Description com.github.longdt.vertxorm.repository.query -
-
Uses of Like in com.github.longdt.vertxorm.repository.query
Methods in com.github.longdt.vertxorm.repository.query that return Like Modifier and Type Method Description static <O> Like<O>QueryFactory. contains(String fieldName, String value)Creates aLikequery which asserts that an attribute contains with a certain string fragment.static <O> Like<O>QueryFactory. endsWith(String fieldName, String value)Creates aLikequery which asserts that an attribute ends with a certain string fragment.static <O> Like<O>QueryFactory. like(String fieldName, String value)Creates aLikequery which asserts that an attribute contains with a certain string fragment.static <O> Like<O>QueryFactory. startsWith(String fieldName, String value)Creates aLikequery which asserts that an attribute starts with a certain string fragment.
-