Codota Logo
CriteriaWhere.name
Code IndexAdd Codota to your IDE (free)

How to use
name
method
in
leap.orm.query.CriteriaWhere

Best Java code snippets using leap.orm.query.CriteriaWhere.name (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: org.leapframework/leap-orm

/**
 * Adds a condition expression "name op param", such as cnd("id","=",100);
 */
default CriteriaWhere<T> cnd(String name,String op,Object param) {
  return name(name).op(op).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a condition expression "name = param", such as cnd("id",100);
 */
default CriteriaWhere<T> cnd(String name,Object param) {
  return name(name).op(Op.EQ.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a condition expression "name op param", such as cnd("id","=",100);
 */
default CriteriaWhere<T> cnd(String name,Op op,Object param) {
  return name(name).op(op.getValue()).param(param);
}

leap.orm.queryCriteriaWherename

Javadoc

Adds a name.

Popular methods of CriteriaWhere

  • and
    Adds an 'and' condition expression "and name op param", such as and("id","=",100);
  • append
    Appends a string expression.
  • cnd
    Adds a condition expression "name op param", such as cnd("id","=",100);
  • eq
    Adds a '=' operator with the given parameter.
  • like
    Adds a like operator with the given parameter.
  • op
    Adds a operator.
  • or
    Adds an 'or' condition expression "and name op param", such as and("id","=",100);
  • param
    Adds a parameter.

Popular in Java

  • Reading from database using SQL prepared statement
  • compareTo (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • startActivity (Activity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • IsNull (org.hamcrest.core)
    Is the value null?
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