congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
SimpleCondition.isIdField
Code IndexAdd Tabnine to your IDE (free)

How to use
isIdField
method
in
io.yawp.repository.query.condition.SimpleCondition

Best Java code snippets using io.yawp.repository.query.condition.SimpleCondition.isIdField (Showing top 2 results out of 315)

origin: feroult/yawp

private boolean isQueryById() {
  if (condition == null || !(condition instanceof SimpleCondition)) {
    return false;
  }
  SimpleCondition c = (SimpleCondition) condition;
  return c.isIdField() && c.isEqualOperator();
}
origin: feroult/yawp

private void normalizeIdRefs() {
  if (isIdField()) {
    if (whereValue instanceof String) {
      whereValue = IdRef.parse(r, (String) whereValue);
    } else if (whereValue instanceof List) {
      whereValue = convertToIdRefs((List<?>) whereValue);
    }
  }
}
io.yawp.repository.query.conditionSimpleConditionisIdField

Popular methods of SimpleCondition

  • getWhereValue
  • getField
  • getWhereOperator
  • <init>
  • assertIsList
  • convertToIdRefs
  • hasPreFilter
  • isEqualOperator
  • isRefField
  • normalizeIdRefs

Popular in Java

  • Making http requests using okhttp
  • setContentView (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSharedPreferences (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • BoxLayout (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now