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

How to use
hasExcludingConditions
method
in
org.camunda.bpm.engine.impl.AbstractQuery

Best Java code snippets using org.camunda.bpm.engine.impl.AbstractQuery.hasExcludingConditions (Showing top 20 results out of 315)

origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(priorityHigherThanOrEquals, priorityLowerThanOrEquals);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(jobPriorityHigherThanOrEqual, jobPriorityLowerThanOrEqual);
}
origin: camunda/camunda-bpm-platform

 @Override
 protected boolean hasExcludingConditions() {
  return super.hasExcludingConditions() || CompareUtil.areNotInAscendingOrder(timestampAfter, timestampBefore);
 }
}
origin: camunda/camunda-bpm-platform

 @Override
 protected boolean hasExcludingConditions() {
  return super.hasExcludingConditions() || CompareUtil.areNotInAscendingOrder(timestampAfter, timestampBefore);
 }
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(priorityHigherThanOrEquals, priorityLowerThanOrEquals);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(jobPriorityHigherThanOrEqual, jobPriorityLowerThanOrEqual);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions() || CompareUtil.areNotInAscendingOrder(deploymentAfter, deploymentBefore);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions() || CompareUtil.elementIsNotContainedInArray(id, ids);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(priorityHigherThanOrEqual, priorityLowerThanOrEqual)
  || hasExcludingDueDateParameters();
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(createdAfter, createdBefore)
  || CompareUtil.areNotInAscendingOrder(endedAfter, endedBefore);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(priorityHigherThanOrEqual, priorityLowerThanOrEqual)
  || hasExcludingDueDateParameters();
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
   || containsIncompatiblePermissions()
   || containsIncompatibleResourceType();
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(startedAfter, startedBefore)
  || CompareUtil.areNotInAscendingOrder(finishedAfter, finishedBefore);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || CompareUtil.areNotInAscendingOrder(createdAfter, createdBefore)
  || CompareUtil.areNotInAscendingOrder(endedAfter, endedBefore);
}
origin: camunda/camunda-bpm-platform

public List<String> evaluateExpressionsAndExecuteIdsList(CommandContext commandContext) {
 validate();
 evaluateExpressions();
 return !hasExcludingConditions() ? executeIdsList(commandContext) : new ArrayList<String>();
}
origin: camunda/camunda-bpm-platform

public List<String> evaluateExpressionsAndExecuteIdsList(CommandContext commandContext) {
 validate();
 evaluateExpressions();
 return !hasExcludingConditions() ? executeIdsList(commandContext) : new ArrayList<String>();
}
origin: camunda/camunda-bpm-platform

public long evaluateExpressionsAndExecuteCount(CommandContext commandContext) {
 validate();
 evaluateExpressions();
 return !hasExcludingConditions() ? executeCount(commandContext) : 0l;
}
origin: camunda/camunda-bpm-platform

public long evaluateExpressionsAndExecuteCount(CommandContext commandContext) {
 validate();
 evaluateExpressions();
 return !hasExcludingConditions() ? executeCount(commandContext) : 0l;
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || (finished && unfinished)
  ||(processFinished && processUnfinished)
  || CompareUtil.areNotInAscendingOrder(startedAfter, startedBefore)
  || CompareUtil.areNotInAscendingOrder(finishedAfter, finishedBefore)
  || CompareUtil.areNotInAscendingOrder(dueAfter, dueDate, dueBefore)
  || CompareUtil.areNotInAscendingOrder(followUpAfter, followUpDate, followUpBefore)
  || CompareUtil.elementIsNotContainedInArray(processInstanceBusinessKey, processInstanceBusinessKeys);
}
origin: camunda/camunda-bpm-platform

@Override
protected boolean hasExcludingConditions() {
 return super.hasExcludingConditions()
  || (finished && unfinished)
  ||(processFinished && processUnfinished)
  || CompareUtil.areNotInAscendingOrder(startedAfter, startedBefore)
  || CompareUtil.areNotInAscendingOrder(finishedAfter, finishedBefore)
  || CompareUtil.areNotInAscendingOrder(dueAfter, dueDate, dueBefore)
  || CompareUtil.areNotInAscendingOrder(followUpAfter, followUpDate, followUpBefore)
  || CompareUtil.elementIsNotContainedInArray(processInstanceBusinessKey, processInstanceBusinessKeys);
}
org.camunda.bpm.engine.implAbstractQueryhasExcludingConditions

Javadoc

Whether or not the query has excluding conditions. If the query has excluding conditions, (e.g. task due date before and after are excluding), the SQL query is avoided and a default result is returned. The returned result is the same as if the SQL was executed and there were no entries.

Popular methods of AbstractQuery

  • addValidator
  • checkQueryOk
  • direction
  • evaluateExpressions
  • evaluateExpressionsAndExecuteCount
  • evaluateExpressionsAndExecuteIdsList
  • evaluateExpressionsAndExecuteList
  • executeCount
  • executeIdsList
  • executeList
    Executes the actual query to retrieve the list of results.
  • executeSingleResult
  • extend
  • executeSingleResult,
  • extend,
  • getExpressions,
  • getMethod,
  • getOrderingProperties,
  • orderBy,
  • setExpressions,
  • validate

Popular in Java

  • Running tasks concurrently on multiple threads
  • setScale (BigDecimal)
  • putExtra (Intent)
  • startActivity (Activity)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top Vim plugins
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