Codota Logo
QueryVariableValue.getOperator
Code IndexAdd Codota to your IDE (free)

How to use
getOperator
method
in
org.camunda.bpm.engine.impl.QueryVariableValue

Best Java code snippets using org.camunda.bpm.engine.impl.QueryVariableValue.getOperator (Showing top 7 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

public String getOperatorName() {
 return getOperator().toString();
}
origin: camunda/camunda-bpm-platform

public String getOperatorName() {
 return getOperator().toString();
}
origin: camunda/camunda-bpm-platform

protected TypedValueSerializer determineSerializer(VariableSerializers serializers, TypedValue value) {
 TypedValueSerializer serializer = serializers.findSerializerForValue(value);
 if(serializer.getType() == ValueType.BYTES){
  throw new ProcessEngineException("Variables of type ByteArray cannot be used to query");
 }
 else if(serializer.getType() == ValueType.FILE){
  throw new ProcessEngineException("Variables of type File cannot be used to query");
 }
 else if(serializer instanceof JPAVariableSerializer) {
  if(wrappedQueryValue.getOperator() != QueryOperator.EQUALS) {
   throw new ProcessEngineException("JPA entity variables can only be used in 'variableValueEquals'");
  }
 }
 else {
  if(!serializer.getType().isPrimitiveValueType()) {
   throw new ProcessEngineException("Object values cannot be used to query");
  }
 }
 return serializer;
}
origin: camunda/camunda-bpm-platform

protected TypedValueSerializer determineSerializer(VariableSerializers serializers, TypedValue value) {
 TypedValueSerializer serializer = serializers.findSerializerForValue(value);
 if(serializer.getType() == ValueType.BYTES){
  throw new ProcessEngineException("Variables of type ByteArray cannot be used to query");
 }
 else if(serializer.getType() == ValueType.FILE){
  throw new ProcessEngineException("Variables of type File cannot be used to query");
 }
 else if(serializer instanceof JPAVariableSerializer) {
  if(wrappedQueryValue.getOperator() != QueryOperator.EQUALS) {
   throw new ProcessEngineException("JPA entity variables can only be used in 'variableValueEquals'");
  }
 }
 else {
  if(!serializer.getType().isPrimitiveValueType()) {
   throw new ProcessEngineException("Object values cannot be used to query");
  }
 }
 return serializer;
}
origin: org.camunda.bpm/camunda-engine

public String getOperatorName() {
 return getOperator().toString();
}
origin: OrienteerBAP/Orienteer

while(it.hasNext()) {
  ExecutionEntity entity = it.next();
  QueryOperator operator = queryValue.getOperator();
  Object value = entity.getVariable(queryValue.getName());
  Object refValue = queryValue.getValue();
origin: org.camunda.bpm/camunda-engine

protected TypedValueSerializer determineSerializer(VariableSerializers serializers, TypedValue value) {
 TypedValueSerializer serializer = serializers.findSerializerForValue(value);
 if(serializer.getType() == ValueType.BYTES){
  throw new ProcessEngineException("Variables of type ByteArray cannot be used to query");
 }
 else if(serializer.getType() == ValueType.FILE){
  throw new ProcessEngineException("Variables of type File cannot be used to query");
 }
 else if(serializer instanceof JPAVariableSerializer) {
  if(wrappedQueryValue.getOperator() != QueryOperator.EQUALS) {
   throw new ProcessEngineException("JPA entity variables can only be used in 'variableValueEquals'");
  }
 }
 else {
  if(!serializer.getType().isPrimitiveValueType()) {
   throw new ProcessEngineException("Object values cannot be used to query");
  }
 }
 return serializer;
}
org.camunda.bpm.engine.implQueryVariableValuegetOperator

Popular methods of QueryVariableValue

  • <init>
  • getName
  • initialize
  • getTypedValue
  • getValue

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • 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