Uses of Class
org.camunda.bpm.engine.impl.core.model.PropertyListKey
-
Packages that use PropertyListKey Package Description org.camunda.bpm.engine.impl.bpmn.helper org.camunda.bpm.engine.impl.core.model -
-
Uses of PropertyListKey in org.camunda.bpm.engine.impl.bpmn.helper
Fields in org.camunda.bpm.engine.impl.bpmn.helper declared as PropertyListKey Modifier and Type Field Description static PropertyListKey<CamundaErrorEventDefinition>
BpmnProperties. CAMUNDA_ERROR_EVENT_DEFINITION
static PropertyListKey<ErrorEventDefinition>
BpmnProperties. ERROR_EVENT_DEFINITIONS
static PropertyListKey<EscalationEventDefinition>
BpmnProperties. ESCALATION_EVENT_DEFINITIONS
static PropertyListKey<java.lang.String>
CmmnProperties. REPEAT_ON_STANDARD_EVENTS
-
Uses of PropertyListKey in org.camunda.bpm.engine.impl.core.model
Methods in org.camunda.bpm.engine.impl.core.model with parameters of type PropertyListKey Modifier and Type Method Description <T> void
Properties. addListItem(PropertyListKey<T> property, T value)
Append the value to the list to which the specified property key is mapped.boolean
Properties. contains(PropertyListKey<?> property)
Returnstrue
if this properties contains a mapping for the specified property key.<T> java.util.List<T>
Properties. get(PropertyListKey<T> property)
Returns the list to which the specified property key is mapped, or an empty list if this properties contains no mapping for the property key.<T> void
Properties. set(PropertyListKey<T> property, java.util.List<T> value)
Associates the specified list with the specified property key.
-