io.crnk.jpa.internal.query.backend.querydsl.QuerydslObjectArrayTupleImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crnk-jpa Show documentation
Show all versions of crnk-jpa Show documentation
JSON API framework for Java
package io.crnk.jpa.internal.query.backend.querydsl;
import com.querydsl.core.types.Expression;
import io.crnk.jpa.query.querydsl.QuerydslTuple;
import java.util.Map;
public class QuerydslObjectArrayTupleImpl extends ObjectArrayTupleImpl implements QuerydslTuple {
public QuerydslObjectArrayTupleImpl(Object entity, Map selectionBindings) {
super(entity, selectionBindings);
}
@Override
public T get(Expression expr) {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy