Codota Logo
FixedValue.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.camunda.bpm.engine.impl.el.FixedValue
constructor

Best Java code snippets using org.camunda.bpm.engine.impl.el.FixedValue.<init> (Showing top 11 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

public Object defaultManualActivation() {
 Expression expression = new FixedValue(true);
 CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
 return caseControlRule;
}
origin: camunda/camunda-bpm-platform

public Object defaultManualActivation() {
 Expression expression = new FixedValue(true);
 CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
 return caseControlRule;
}
origin: camunda/camunda-bpm-platform

protected FieldDeclaration parseStringFieldDeclaration(Element fieldDeclarationElement, Element serviceTaskElement, String fieldName) {
 try {
  String fieldValue = getStringValueFromAttributeOrElement("stringValue", "string", fieldDeclarationElement);
  if (fieldValue != null) {
   return new FieldDeclaration(fieldName, Expression.class.getName(), new FixedValue(fieldValue));
  }
 } catch (ProcessEngineException ae) {
  if (ae.getMessage().contains("multiple elements with tag name")) {
   addError("Multiple string field declarations found", serviceTaskElement);
  } else {
   addError("Error when paring field declarations: " + ae.getMessage(), serviceTaskElement);
  }
 }
 return null;
}
origin: camunda/camunda-bpm-platform

protected FieldDeclaration parseStringFieldDeclaration(Element fieldDeclarationElement, Element serviceTaskElement, String fieldName) {
 try {
  String fieldValue = getStringValueFromAttributeOrElement("stringValue", "string", fieldDeclarationElement);
  if (fieldValue != null) {
   return new FieldDeclaration(fieldName, Expression.class.getName(), new FixedValue(fieldValue));
  }
 } catch (ProcessEngineException ae) {
  if (ae.getMessage().contains("multiple elements with tag name")) {
   addError("Multiple string field declarations found", serviceTaskElement);
  } else {
   addError("Error when paring field declarations: " + ae.getMessage(), serviceTaskElement);
  }
 }
 return null;
}
origin: camunda/camunda-bpm-platform

public Object defaultManualActivation() {
 Expression expression = new FixedValue(true);
 CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
 return caseControlRule;
}
origin: camunda/camunda-bpm-platform

protected FixedValue getFixedValue(CamundaField field) {
 CamundaString strg = field.getCamundaString();
 String value = null;
 if (strg != null) {
  value = strg.getTextContent();
 }
 if (value == null) {
  value = field.getCamundaStringValue();
 }
 if (value != null) {
  return new FixedValue(value);
 }
 return null;
}
origin: camunda/camunda-bpm-platform

protected FixedValue getFixedValue(CamundaField field) {
 CamundaString strg = field.getCamundaString();
 String value = null;
 if (strg != null) {
  value = strg.getTextContent();
 }
 if (value == null) {
  value = field.getCamundaStringValue();
 }
 if (value != null) {
  return new FixedValue(value);
 }
 return null;
}
origin: org.camunda.bpm/camunda-engine

public Object defaultManualActivation() {
 Expression expression = new FixedValue(true);
 CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
 return caseControlRule;
}
origin: org.camunda.bpm/camunda-engine

protected FieldDeclaration parseStringFieldDeclaration(Element fieldDeclarationElement, Element serviceTaskElement, String fieldName) {
 try {
  String fieldValue = getStringValueFromAttributeOrElement("stringValue", "string", fieldDeclarationElement);
  if (fieldValue != null) {
   return new FieldDeclaration(fieldName, Expression.class.getName(), new FixedValue(fieldValue));
  }
 } catch (ProcessEngineException ae) {
  if (ae.getMessage().contains("multiple elements with tag name")) {
   addError("Multiple string field declarations found", serviceTaskElement);
  } else {
   addError("Error when paring field declarations: " + ae.getMessage(), serviceTaskElement);
  }
 }
 return null;
}
origin: org.camunda.bpm/camunda-engine

public Object defaultManualActivation() {
 Expression expression = new FixedValue(true);
 CaseControlRuleImpl caseControlRule = new CaseControlRuleImpl(expression);
 return caseControlRule;
}
origin: org.camunda.bpm/camunda-engine

protected FixedValue getFixedValue(CamundaField field) {
 CamundaString strg = field.getCamundaString();
 String value = null;
 if (strg != null) {
  value = strg.getTextContent();
 }
 if (value == null) {
  value = field.getCamundaStringValue();
 }
 if (value != null) {
  return new FixedValue(value);
 }
 return null;
}
org.camunda.bpm.engine.impl.elFixedValue<init>

Popular methods of FixedValue

  • getValue
  • getExpressionText

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
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