Package com.querydsl.core.types
Class ParamExpressionImpl<T>
java.lang.Object
com.querydsl.core.types.ExpressionBase<T>
com.querydsl.core.types.ParamExpressionImpl<T>
- Type Parameters:
T- expression type
- All Implemented Interfaces:
Expression<T>,ParamExpression<T>,Serializable
@Immutable
public class ParamExpressionImpl<T>
extends ExpressionBase<T>
implements ParamExpression<T>
ParamExpressionImpl defines a parameter in a query with an optional name- Author:
- tiwe
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionParamExpressionImpl(Class<? extends T> type) ParamExpressionImpl(Class<? extends T> type, String name) -
Method Summary
Methods inherited from class com.querydsl.core.types.ExpressionBase
getType, hashCode, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.querydsl.core.types.Expression
getType
-
Constructor Details
-
ParamExpressionImpl
-
ParamExpressionImpl
-
-
Method Details
-
accept
Description copied from interface:ExpressionAccept the visitor with the given context- Specified by:
acceptin interfaceExpression<T>- Type Parameters:
R- return typeC- context type- Parameters:
v- visitorcontext- context of visit- Returns:
- result of visit
-
equals
-
getName
Description copied from interface:ParamExpressionGet the name of the parameter- Specified by:
getNamein interfaceParamExpression<T>- Returns:
- name
-
isAnon
public final boolean isAnon()Description copied from interface:ParamExpressionGet whether the parameter is anonymous- Specified by:
isAnonin interfaceParamExpression<T>- Returns:
- true, if anonymous
-
getNotSetMessage
Description copied from interface:ParamExpressionGet the message for the not set case- Specified by:
getNotSetMessagein interfaceParamExpression<T>- Returns:
- not set message
-