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

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

Best Java code snippets using leap.orm.query.CriteriaWhere.or (Showing top 2 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 an 'or' condition expression "and name op param", such as and("id",,100);
 */
default CriteriaWhere<T> or(String name,Object param) {
  return or().cnd(name, param);
}

origin: org.leapframework/leap-orm

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

leap.orm.queryCriteriaWhereor

Javadoc

Adds or operator.

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.
  • name
    Adds a name.
  • op
    Adds a operator.
  • 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