Uses of Class
org.h2.expression.ValueExpression
Packages that use ValueExpression
Package
Description
Expressions include mathematical operations, simple values, and others.
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
-
Uses of ValueExpression in org.h2.expression
Subclasses of ValueExpression in org.h2.expressionModifier and TypeClassDescriptionclass
An expression representing a constant value with a type cast.Fields in org.h2.expression declared as ValueExpressionModifier and TypeFieldDescriptionstatic final ValueExpression
ValueExpression.DEFAULT
This special expression represents the default value.static final ValueExpression
ValueExpression.FALSE
The expression represents ValueBoolean.FALSE.static final ValueExpression
ValueExpression.NULL
The expression represents ValueNull.INSTANCE.static final ValueExpression
ValueExpression.TRUE
The expression represents ValueBoolean.TRUE.Methods in org.h2.expression that return ValueExpressionModifier and TypeMethodDescriptionstatic ValueExpression
Create a new expression with the given value and type.static ValueExpression
Create a new expression with the given value.static ValueExpression
ValueExpression.getBoolean
(boolean value) Create a new expression with the given boolean value.static ValueExpression
ValueExpression.getBoolean
(Value value) Create a new expression with the given boolean value.private static ValueExpression
static ValueExpression
TypedValueExpression.getTypedIfNull
(Value value, TypeInfo type) Create a new typed value expression with the given value and type if value isNULL
, or a plain value expression otherwise. -
Uses of ValueExpression in org.h2.schema
Fields in org.h2.schema declared as ValueExpressionMethods in org.h2.schema that return ValueExpression