Package com.querydsl.core.types
Class ArrayConstructorExpression<T>
java.lang.Object
com.querydsl.core.types.ExpressionBase<T>
com.querydsl.core.types.FactoryExpressionBase<T[]>
com.querydsl.core.types.ArrayConstructorExpression<T>
- Type Parameters:
T- component type
- All Implemented Interfaces:
Expression<T[]>,FactoryExpression<T[]>,Serializable
ArrayConstructorExpression extends FactoryExpressionBase to represent array initializers- Author:
- tiwe
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionArrayConstructorExpression(Expression<?>... args) ArrayConstructorExpression(Class<T[]> type, Expression<T>... args) -
Method Summary
Modifier and TypeMethodDescription<R,C> R Accept the visitor with the given contextboolean@Unmodifiable List<Expression<?>>getArgs()Get the invocation argumentsT[]newInstance(Object... a) Create a projection with the given argumentsMethods inherited from class com.querydsl.core.types.FactoryExpressionBase
skipNullsMethods 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
-
ArrayConstructorExpression
-
ArrayConstructorExpression
-
-
Method Details
-
getElementType
-
accept
Description copied from interface:ExpressionAccept the visitor with the given context- Type Parameters:
R- return typeC- context type- Parameters:
v- visitorcontext- context of visit- Returns:
- result of visit
-
newInstance
Description copied from interface:FactoryExpressionCreate a projection with the given arguments- Parameters:
a- row arguments- Returns:
- constructed value
-
getArgs
Description copied from interface:FactoryExpressionGet the invocation arguments- Returns:
- argument expressions
-
equals
- Overrides:
equalsin classFactoryExpressionBase<T[]>
-