Class Coalesce<T extends Comparable>

java.lang.Object
com.querydsl.core.types.MutableExpressionBase<T>
com.querydsl.core.types.dsl.Coalesce<T>
Type Parameters:
T - expression type
All Implemented Interfaces:
Expression<T>, Serializable

public class Coalesce<T extends Comparable> extends MutableExpressionBase<T>
Coalesce defines a coalesce function invocation. The coalesce function returns null if all arguments are null and the first non-null argument otherwise

Coalesce doesn't provide the full interface for comparable expressions. To get an immutable copy with the full expressiveness of Comparable expressions, call getValue().

Author:
tiwe
See Also: