Uses of Interface
org.seasar.doma.jdbc.criteria.option.LikeOption
Packages that use LikeOption
Package
Description
Provides contexts and settings used to build the criteria query statements.
Provides classes that build the criteria query statements.
Provides options used to build the criteria query statement.
-
Uses of LikeOption in org.seasar.doma.jdbc.criteria.context
Fields in org.seasar.doma.jdbc.criteria.context declared as LikeOptionModifier and TypeFieldDescriptionfinal LikeOptionCriterion.Like.optionfinal LikeOptionCriterion.NotLike.optionConstructors in org.seasar.doma.jdbc.criteria.context with parameters of type LikeOptionModifierConstructorDescriptionLike(Operand.Prop left, CharSequence right, LikeOption option) NotLike(Operand.Prop left, CharSequence right, LikeOption option) -
Uses of LikeOption in org.seasar.doma.jdbc.criteria.declaration
Methods in org.seasar.doma.jdbc.criteria.declaration with parameters of type LikeOptionModifier and TypeMethodDescriptionvoidComparisonDeclaration.like(PropertyMetamodel<?> left, CharSequence right, LikeOption option) Adds aLIKEoperator.voidComparisonDeclaration.notLike(PropertyMetamodel<?> left, CharSequence right, LikeOption option) Adds aNOT LIKEoperator. -
Uses of LikeOption in org.seasar.doma.jdbc.criteria.option
Classes in org.seasar.doma.jdbc.criteria.option that implement LikeOptionModifier and TypeClassDescriptionstatic classstatic classstatic classstatic classstatic classMethods in org.seasar.doma.jdbc.criteria.option that return LikeOptionModifier and TypeMethodDescriptionstatic LikeOptionLikeOption.escape()Indicates that the option escapes the LIKE operand with the default escape character $.static LikeOptionLikeOption.escape(char escapeChar) Indicates that the option escapes the LIKE operand withescapeChar.static LikeOptionLikeOption.infix()Indicates that the option escape the LIKE operand with the default escape character $ and concatenates a wildcard at the start and the end.static LikeOptionLikeOption.infix(char escapeChar) Indicates that the option escape the LIKE operand withescapeCharand concatenates a wildcard at the start and the end.static LikeOptionLikeOption.none()Indicates that the option does nothing.static LikeOptionLikeOption.prefix()Indicates that the option escape the LIKE operand with the default escape character $ and concatenates a wildcard at the end.static LikeOptionLikeOption.prefix(char escapeChar) Indicates that the option escape the LIKE operand withescapeCharand concatenates a wildcard at the end.static LikeOptionLikeOption.suffix()Indicates that the option escape the LIKE operand with the default escape character $ and concatenates a wildcard at the start.static LikeOptionLikeOption.suffix(char escapeChar) Indicates that the option escape the LIKE operand withescapeCharand concatenates a wildcard at the start.