Codota Logo
AbstractTypedValue.setTransient
Code IndexAdd Codota to your IDE (free)

How to use
setTransient
method
in
org.camunda.bpm.engine.variable.impl.value.AbstractTypedValue

Best Java code snippets using org.camunda.bpm.engine.variable.impl.value.AbstractTypedValue.setTransient (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

@Override
public TypedValueBuilder<T> setTransient(boolean isTransient) {
 ((AbstractTypedValue<?>) variableValue).setTransient(isTransient);
 return this;
}
origin: camunda/camunda-bpm-platform

/**
 * Creates an untyped value, i.e. {@link TypedValue#getType()} returns <code>null</code>
 * for the returned instance.
 */
public static TypedValue untypedValue(Object value, boolean isTransient) {
 if(value == null) {
  return untypedNullValue(isTransient);
 } else if (value instanceof TypedValueBuilder<?>) {
  return ((TypedValueBuilder<?>) value).setTransient(isTransient).create();
 } else if (value instanceof TypedValue) {
  TypedValue transientValue = (TypedValue) value;
  if (value instanceof NullValueImpl) {
   transientValue = untypedNullValue(isTransient);
  } else if (value instanceof FileValue) {
   ((FileValueImpl) transientValue).setTransient(isTransient);
  } else if (value instanceof AbstractTypedValue<?>) {
   ((AbstractTypedValue<?>) transientValue).setTransient(isTransient);
  }
  return transientValue;
 }
 else {
  // unknown value
  return new UntypedValueImpl(value, isTransient);
 }
}
origin: org.camunda.bpm/camunda-engine-plugin-spin

@Override
public TypedValueBuilder<T> setTransient(boolean isTransient) {
 ((AbstractTypedValue<?>) variableValue).setTransient(isTransient);
 return this;
}
origin: org.camunda.commons/camunda-commons-typed-values

/**
 * Creates an untyped value, i.e. {@link TypedValue#getType()} returns <code>null</code>
 * for the returned instance.
 */
public static TypedValue untypedValue(Object value, boolean isTransient) {
 if(value == null) {
  return untypedNullValue(isTransient);
 } else if (value instanceof TypedValueBuilder<?>) {
  return ((TypedValueBuilder<?>) value).setTransient(isTransient).create();
 } else if (value instanceof TypedValue) {
  TypedValue transientValue = (TypedValue) value;
  if (value instanceof NullValueImpl) {
   transientValue = untypedNullValue(isTransient);
  } else if (value instanceof FileValue) {
   ((FileValueImpl) transientValue).setTransient(isTransient);
  } else if (value instanceof AbstractTypedValue<?>) {
   ((AbstractTypedValue<?>) transientValue).setTransient(isTransient);
  }
  return transientValue;
 }
 else {
  // unknown value
  return new UntypedValueImpl(value, isTransient);
 }
}
org.camunda.bpm.engine.variable.impl.valueAbstractTypedValuesetTransient

Popular methods of AbstractTypedValue

  • getType
  • getValue
  • <init>

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • startActivity (Activity)
  • orElseThrow (Optional)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
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