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

  • Reactive rest calls using spring rest template
  • onCreateOptionsMenu (Activity)
  • onRequestPermissionsResult (Fragment)
  • startActivity (Activity)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • 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