Codota Logo
PropertySubqueryExpression.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.hibernate.criterion.PropertySubqueryExpression
constructor

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given property is in the set of values in the
 * subquery result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 */
public static Criterion propertyIn(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, "in", null, dc );
}
origin: hibernate/hibernate-orm

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

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

/**
 * Creates a criterion which checks that the value of a given property is not equal to the value in the
 * subquery result.  The assumption is that the subquery returns a single result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 */
public static Criterion propertyNe(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression(propertyName, "<>", null, dc);
}
origin: hibernate/hibernate-orm

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

/**
 * Creates a criterion which checks that the value of a given property is not-in the set of values in
 * the subquery result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 */
public static Criterion propertyNotIn(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, "not in", null, dc );
}
origin: hibernate/hibernate-orm

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

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

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

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

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

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

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

/**
 * Creates a criterion which checks that the value of a given property is greater-than the value in the
 * subquery result.  The assumption is that the subquery returns a single result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 * @see #propertyGtAll
 * @see #propertyGtSome
 */
public static Criterion propertyGt(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, ">", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given property is less-than the value in the
 * subquery result.  The assumption is that the subquery returns a single result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 * @see #propertyLtAll
 * @see #propertyLtSome
 */
public static Criterion propertyLt(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, "<", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given property is greater-than-or-equal-to the value
 * in the subquery result.  The assumption is that the subquery returns a single result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 * @see #propertyGeAll
 * @see #propertyGeSome
 */
public static Criterion propertyGe(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, ">=", null, dc );
}
origin: hibernate/hibernate-orm

/**
 * Creates a criterion which checks that the value of a given property is less-than-or-equal-to the value
 * in the subquery result.  The assumption is that the subquery returns a single result.
 *
 * @param propertyName The name of the property to use in comparison
 * @param dc The detached criteria representing the subquery
 *
 * @return The Criterion
 *
 * @see PropertySubqueryExpression
 * @see #propertyLeAll
 * @see #propertyLeSome
 */
public static Criterion propertyLe(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression( propertyName, "<=", null, dc );
}
origin: hibernate/hibernate

public static Criterion propertyIn(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression(propertyName, "in", null, dc);
}

origin: jboss.jboss-embeddable-ejb3/hibernate-all

public static Criterion propertyGtAll(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression(propertyName, ">", "all", dc);
}
 
origin: jboss.jboss-embeddable-ejb3/hibernate-all

public static Criterion propertyLtAll(String propertyName, DetachedCriteria dc) {
  return new PropertySubqueryExpression(propertyName, "<", "all", dc);
}
 
org.hibernate.criterionPropertySubqueryExpression<init>

Popular methods of PropertySubqueryExpression

    Popular in Java

    • Updating database using SQL prepared statement
    • orElseThrow (Optional)
      Return the contained value, if present, otherwise throw an exception to be created by the provided s
    • getResourceAsStream (ClassLoader)
    • setScale (BigDecimal)
      Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
    • Point (java.awt)
      A point representing a location in (x, y) coordinate space, specified in integer precision.
    • Kernel (java.awt.image)
    • PrintWriter (java.io)
      Prints formatted representations of objects to a text-output stream. This class implements all of th
    • LinkedHashMap (java.util)
      Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
    • Properties (java.util)
      The Properties class represents a persistent set of properties. The Properties can be saved to a st
    • Set (java.util)
      A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
    Codota Logo
    • Products

      Search for Java codeSearch for JavaScript codeEnterprise
    • IDE Plugins

      IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Codota for your IDE now