Interface SubProcessCallResult


public interface SubProcessCallResult
API:
This is a public API.
  • Method Details

    • get

      Object get(String fieldName)
      Parameters:
      fieldName - the name of the result field
      Returns:
      value of the given field form the result
      API:
      This public API is available in Java.
    • get

      <T> T get(String fieldName, Class<T> type)
      Parameters:
      fieldName - the name of the result field
      type - which the field is casted to
      Returns:
      value of the the given field form the result casted to the given type
      API:
      This public API is available in Java.
    • asMap

      Map<String,Object> asMap()
      Returns:
      result fields as Map (field names as keys)
      API:
      This public API is available in Java.
    • asArray

      Object[] asArray()
      Returns:
      result fields as Array of Objects
      API:
      This public API is available in Java.
    • first

      Object first()
      Returns:
      value of the first field from the result
      API:
      This public API is available in Java.
    • first

      <T> T first(Class<T> type)
      Parameters:
      type - which the result is casted to
      Returns:
      value of the the first element from the result casted to the given type
      API:
      This public API is available in Java.