Uses of Class
org.h2.expression.condition.CompareLike.LikeType
-
Packages that use CompareLike.LikeType Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.expression.condition Condition expressions. -
-
Uses of CompareLike.LikeType in org.h2.command
Methods in org.h2.command with parameters of type CompareLike.LikeType Modifier and Type Method Description private Expression
Parser. readLikePredicate(Expression left, CompareLike.LikeType likeType, boolean not, boolean whenOperand)
-
Uses of CompareLike.LikeType in org.h2.expression.condition
Fields in org.h2.expression.condition declared as CompareLike.LikeType Modifier and Type Field Description private CompareLike.LikeType
CompareLike. likeType
Methods in org.h2.expression.condition that return CompareLike.LikeType Modifier and Type Method Description static CompareLike.LikeType
CompareLike.LikeType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompareLike.LikeType[]
CompareLike.LikeType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.h2.expression.condition with parameters of type CompareLike.LikeType Constructor Description CompareLike(Database db, Expression left, boolean not, boolean whenOperand, Expression right, Expression escape, CompareLike.LikeType likeType)
CompareLike(CompareMode compareMode, java.lang.String defaultEscape, Expression left, boolean not, boolean whenOperand, Expression right, Expression escape, CompareLike.LikeType likeType)
-