Codota Logo
SizeExpression
Code IndexAdd Codota to your IDE (free)

How to use
SizeExpression
in
org.hibernate.criterion

Best Java code snippets using org.hibernate.criterion.SizeExpression (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
@SuppressWarnings("UnusedDeclaration")
public static Criterion sizeGe(String propertyName, int size) {
  return new SizeExpression( propertyName, size, "<=" );
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
public static Criterion sizeEq(String propertyName, int size) {
  return new SizeExpression( propertyName, size, "=" );
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
@SuppressWarnings("UnusedDeclaration")
public static Criterion sizeNe(String propertyName, int size) {
  return new SizeExpression( propertyName, size, "<>" );
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
@SuppressWarnings("UnusedDeclaration")
public static Criterion sizeLe(String propertyName, int size) {
  return new SizeExpression( propertyName, size, ">=" );
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
@SuppressWarnings("UnusedDeclaration")
public static Criterion sizeGt(String propertyName, int size) {
  return new SizeExpression( propertyName, size, "<" );
}
origin: hibernate/hibernate-orm

/**
 * Constrain a collection valued property by size
 *
 * @param propertyName The name of the collection property
 * @param size The size to use in comparison
 *
 * @return The Criterion
 *
 * @see SizeExpression
 */
@SuppressWarnings("UnusedDeclaration")
public static Criterion sizeLt(String propertyName, int size) {
  return new SizeExpression( propertyName, size, ">" );
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeLe(String propertyName, int size) {
  return new SizeExpression(propertyName, size, ">=");
}
 
origin: jboss.jboss-embeddable-ejb3/hibernate-all

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeNe(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "<>");
}
 
origin: org.hibernate/com.springsource.org.hibernate

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeNe(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "<>");
}
origin: org.hibernate/com.springsource.org.hibernate

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeEq(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "=");
}
origin: hibernate/hibernate

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeEq(String propertyName, int size) {
  return new SizeExpression(propertyName, size);
}

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

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeGt(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "<");
}
 
origin: org.hibernate/com.springsource.org.hibernate

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeLt(String propertyName, int size) {
  return new SizeExpression(propertyName, size, ">");
}
origin: org.hibernate/com.springsource.org.hibernate

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeLe(String propertyName, int size) {
  return new SizeExpression(propertyName, size, ">=");
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeGe(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "<=");
}
 
origin: jboss.jboss-embeddable-ejb3/hibernate-all

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeLt(String propertyName, int size) {
  return new SizeExpression(propertyName, size, ">");
}
 
origin: org.hibernate/com.springsource.org.hibernate.core

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeEq(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "=");
}
origin: org.hibernate/com.springsource.org.hibernate.core

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeLt(String propertyName, int size) {
  return new SizeExpression(propertyName, size, ">");
}
origin: org.hibernate/com.springsource.org.hibernate.core

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeGt(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "<");
}
origin: jboss.jboss-embeddable-ejb3/hibernate-all

/**
 * Constrain a collection valued property by size
 */
public static Criterion sizeEq(String propertyName, int size) {
  return new SizeExpression(propertyName, size, "=");
}
 
org.hibernate.criterionSizeExpression

Javadoc

Used to define a restriction on a collection property based on its size.

Most used methods

  • <init>

Popular in Java

  • Finding current android device location
  • getApplicationContext (Context)
  • setContentView (Activity)
  • addToBackStack (FragmentTransaction)
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JLabel (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Option (scala)
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