Uses of Class
org.h2.expression.ValueExpression
-
Packages that use ValueExpression Package Description org.h2.expression Expressions include mathematical operations, simple values, and others.org.h2.schema 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.expression Modifier and Type Class Description class
TypedValueExpression
An expression representing a constant value with a type cast.Fields in org.h2.expression declared as ValueExpression Modifier and Type Field Description static ValueExpression
ValueExpression. DEFAULT
This special expression represents the default value.static ValueExpression
ValueExpression. FALSE
The expression represents ValueBoolean.FALSE.static ValueExpression
ValueExpression. NULL
The expression represents ValueNull.INSTANCE.static ValueExpression
ValueExpression. TRUE
The expression represents ValueBoolean.TRUE.Methods in org.h2.expression that return ValueExpression Modifier and Type Method Description static ValueExpression
TypedValueExpression. get(Value value, TypeInfo type)
Create a new expression with the given value and type.static ValueExpression
ValueExpression. get(Value value)
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
TypedValueExpression. getImpl(Value value, TypeInfo type, boolean preserveStrictType)
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 ValueExpression Modifier and Type Field Description private ValueExpression
Constant. expression
Methods in org.h2.schema that return ValueExpression Modifier and Type Method Description ValueExpression
Constant. getValue()
-