Class SelectQueryContribution

java.lang.Object
org.opencastproject.assetmanager.impl.query.SelectQueryContribution

@ParametersAreNonnullByDefault public final class SelectQueryContribution extends Object
Collect contributions to a JPA query. Each of the builder methods creates a new instance.
  • Constructor Summary

    Constructors
    Constructor
    Description
    SelectQueryContribution(com.entwinemedia.fn.Stream<com.mysema.query.types.Expression<?>> fetch, com.entwinemedia.fn.Stream<com.mysema.query.types.EntityPath<?>> from, com.entwinemedia.fn.Stream<org.opencastproject.assetmanager.impl.query.Join> join, com.entwinemedia.fn.data.Opt<com.mysema.query.types.expr.BooleanExpression> where, com.entwinemedia.fn.data.Opt<Integer> offset, com.entwinemedia.fn.data.Opt<Integer> limit, com.entwinemedia.fn.Stream<com.mysema.query.types.OrderSpecifier<?>> order)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    mk()
    Create a new, empty contribution.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SelectQueryContribution

      public SelectQueryContribution(com.entwinemedia.fn.Stream<com.mysema.query.types.Expression<?>> fetch, com.entwinemedia.fn.Stream<com.mysema.query.types.EntityPath<?>> from, com.entwinemedia.fn.Stream<org.opencastproject.assetmanager.impl.query.Join> join, com.entwinemedia.fn.data.Opt<com.mysema.query.types.expr.BooleanExpression> where, com.entwinemedia.fn.data.Opt<Integer> offset, com.entwinemedia.fn.data.Opt<Integer> limit, com.entwinemedia.fn.Stream<com.mysema.query.types.OrderSpecifier<?>> order)
  • Method Details