Tabnine Logo
SimpleSubqueryExpression.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.hibernate.criterion.SimpleSubqueryExpression
constructor

Best Java code snippets using org.hibernate.criterion.SimpleSubqueryExpression.<init> (Showing top 20 results out of 315)

origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is less-than ALL the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion ltAll(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<", "all", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is greater-than SOME of the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion gtSome(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">", "some", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being equal to the value in
 * the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion eq(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "=", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being less-than the value in
 * the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion lt(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being greater-than-or-equal-to the
 * value in the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion ge(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">=", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is greater-than-or-equal-to SOME of the values
 * in the subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion geSome(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">=", "some", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is IN the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion in(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "in", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is greater-than ALL the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion gtAll(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">", "all", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is greater-than-or-equal-to ALL the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion geAll(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">=", "all", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is NOT IN the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion notIn(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "not in", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being greater-than the value in
 * the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion gt(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, ">", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal equals ALL the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion eqAll(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "=", "all", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is less-than-or-equal-to SOME of the values
 * in the subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion leSome(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<=", "some", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being not-equal to the value in
 * the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion ne(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression(value, "<>", null, dc);
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given literal as being less-than-or-equal-to the
 * value in the subquery result.  The implication is that the subquery returns a single result..
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion le(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<=", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is less-than-or-equal-to ALL the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion leAll(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<=", "all", dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a literal is less-than SOME of the values in the
 * subquery result.
 *
 * @param value The literal value to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see SimpleSubqueryExpression
 */
public static Criterion ltSome(Object value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression( value, "<", "some", dc );
}
origin: hibernate/hibernate

public static Criterion ne(String value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression(value, "<>", null, dc);
}

origin: hibernate/hibernate

public static Criterion ltAll(String value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression(value, "<", "all", dc);
}

origin: hibernate/hibernate

public static Criterion geAll(String value, DetachedCriteria dc) {
  return new SimpleSubqueryExpression(value, ">=", "all", dc);
}

org.hibernate.criterionSimpleSubqueryExpression<init>

Popular methods of SimpleSubqueryExpression

  • getTypes

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now