Codota Logo
CriteriaWhere$Op.getValue
Code IndexAdd Codota to your IDE (free)

How to use
getValue
method
in
leap.orm.query.CriteriaWhere$Op

Best Java code snippets using leap.orm.query.CriteriaWhere$Op.getValue (Showing top 11 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: org.leapframework/leap-orm

/**
 * Adds a like operator with the given parameter.
 */
default CriteriaWhere<T> like(String pattern) {
  return op(Op.LIKE.getValue()).param(pattern);
}

origin: org.leapframework/leap-orm

/**
 * Adds a '<=' operator with the given parameter.
 */
default CriteriaWhere<T> le(Object param) {
  return op(Op.LE.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a '<' operator with the given parameter.
 */
default CriteriaWhere<T> lt(Object param) {
  return op(Op.LT.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a not like operator with the given parameter.
 */
default CriteriaWhere<T> not_like(String pattern) {
  return op(Op.NOT_LIKE.getValue()).param(pattern);
}

origin: org.leapframework/leap-orm

/**
 * Adds a not in operator with the given parameter.
 */
default CriteriaWhere<T> not_in(Object... array) {
  return op(Op.NOT_IN.getValue()).param(array);
}

origin: org.leapframework/leap-orm

/**
 * Adds a '>=' operator with the given parameter.
 */
default CriteriaWhere<T> ge(Object param) {
  return op(Op.GE.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a '>' operator with the given parameter.
 */
default CriteriaWhere<T> gt(Object param) {
  return op(Op.GT.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a '=' operator with the given parameter.
 */
default CriteriaWhere<T> eq(Object param) {
  return op(Op.EQ.getValue()).param(param);
}

origin: org.leapframework/leap-orm

/**
 * Adds a in operator with the given parameter.
 */
default CriteriaWhere<T> in(Object... array) {
  return op(Op.IN.getValue()).param(array);
}

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);
}

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);
}

leap.orm.queryCriteriaWhere$OpgetValue

Popular methods of CriteriaWhere$Op

    Popular in Java

    • Creating JSON documents from java classes using gson
    • getSupportFragmentManager (FragmentActivity)
    • getOriginalFilename (MultipartFile)
      Return the original filename in the client's filesystem.This may contain path information depending
    • addToBackStack (FragmentTransaction)
    • BufferedInputStream (java.io)
      Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
    • OutputStream (java.io)
      A writable sink for bytes.Most clients will use output streams that write data to the file system (
    • HashSet (java.util)
      This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
    • ServletException (javax.servlet)
      Defines a general exception a servlet can throw when it encounters difficulty.
    • Join (org.hibernate.mapping)
    • SAXParseException (org.xml.sax)
      Encapsulate an XML parse error or warning.This exception may include information for locating the er
    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