Uses of Class
com.querydsl.core.types.QBean

Packages that use QBean
Package
Description
Expression types
  • Uses of QBean in com.querydsl.core.types

    Methods in com.querydsl.core.types that return QBean
    Modifier and Type
    Method
    Description
    static <T> QBean<T>
    Projections.bean(Path<? extends T> type, Expression<?>... exprs)
    Create a Bean populating projection for the given type and expressions
    static <T> QBean<T>
    Projections.bean(Path<? extends T> type, Map<String,? extends Expression<?>> bindings)
    Create a Bean populating projection for the given type and bindings
    static <T> QBean<T>
    Projections.bean(Class<? extends T> type, Expression<?>... exprs)
    Create a Bean populating projection for the given type and expressions
    static <T> QBean<T>
    Projections.bean(Class<? extends T> type, Map<String,? extends Expression<?>> bindings)
    Create a Bean populating projection for the given type and bindings
    static <T> QBean<T>
    Projections.fields(Path<? extends T> type, Expression<?>... exprs)
    Create a field access based Bean populating projection for the given type and expressions
    static <T> QBean<T>
    Projections.fields(Path<? extends T> type, Map<String,? extends Expression<?>> bindings)
    Create a field access based Bean populating projection for the given type and bindings
    static <T> QBean<T>
    Projections.fields(Class<? extends T> type, Expression<?>... exprs)
    Create a field access based Bean populating projection for the given type and expressions
    static <T> QBean<T>
    Projections.fields(Class<? extends T> type, Map<String,? extends Expression<?>> bindings)
    Create a field access based Bean populating projection for the given type and bindings