ExpressionStringLike class final

Inheritance
Available extensions

Constructors

ExpressionStringLike.new(Expr<String> value, String pattern)

Properties

hashCode int
The hash code for this object.
no setterinherited
pattern String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value Expr<String>
final

Methods

and(Expr<bool> other) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Logical AND.
asInt() Expr<int>

Available on Expr<bool>, provided by the ExpressionBool extension

Cast as integer.
equals(Expr<bool?> value) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Compare this expression to value using = in SQL coalesced to FALSE.
equalsValue(bool? value) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Compare this expression to value using = in SQL coalesced to FALSE.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
not() Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Negate this expression.
notEquals(Expr<bool?> value) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Compare this expression to value using <> in SQL.
notEqualsValue(bool? value) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Compare this expression to value using <> in SQL.
or(Expr<bool> other) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Logical OR.
toString() String
A string representation of this object.
inherited

Operators

operator &(Expr<bool> other) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Logical AND.
operator ==(Object other) bool
The equality operator.
inherited
operator |(Expr<bool> other) Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Logical OR.
operator ~() Expr<bool>

Available on Expr<bool>, provided by the ExpressionBool extension

Negate this expression.