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 classTypedValueExpressionAn expression representing a constant value with a type cast.Fields in org.h2.expression declared as ValueExpression Modifier and Type Field Description static ValueExpressionValueExpression. DEFAULTThis special expression represents the default value.static ValueExpressionValueExpression. FALSEThe expression represents ValueBoolean.FALSE.static ValueExpressionValueExpression. NULLThe expression represents ValueNull.INSTANCE.static ValueExpressionValueExpression. TRUEThe expression represents ValueBoolean.TRUE.Methods in org.h2.expression that return ValueExpression Modifier and Type Method Description static ValueExpressionTypedValueExpression. get(Value value, TypeInfo type)Create a new expression with the given value and type.static ValueExpressionValueExpression. get(Value value)Create a new expression with the given value.static ValueExpressionValueExpression. getBoolean(boolean value)Create a new expression with the given boolean value.static ValueExpressionValueExpression. getBoolean(Value value)Create a new expression with the given boolean value.private static ValueExpressionTypedValueExpression. getImpl(Value value, TypeInfo type, boolean preserveStrictType)static ValueExpressionTypedValueExpression. 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 ValueExpressionConstant. expressionMethods in org.h2.schema that return ValueExpression Modifier and Type Method Description ValueExpressionConstant. getValue()
-