Class EdorasVisProperty
java.lang.Object
com.flowable.platform.common.util.EdorasVisProperty
public class EdorasVisProperty
extends java.lang.Object
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and Type Method Description static EdorasVisPropertycreate(org.flowable.bpmn.model.ExtensionElement extensionElement)static EdorasVisPropertycreateWithoutLanguage(org.flowable.bpmn.model.ExtensionElement extensionElement)java.lang.StringgetKey()java.lang.StringgetLanguage()java.lang.StringgetValue()<V> VgetValue(java.util.function.Function<java.lang.String,V> converter)Get the value by applying the converter to it,static booleanisEdorasVisProperty(org.flowable.bpmn.model.ExtensionElement extensionElement)
-
Method Details
-
isEdorasVisProperty
public static boolean isEdorasVisProperty(org.flowable.bpmn.model.ExtensionElement extensionElement) -
createWithoutLanguage
public static EdorasVisProperty createWithoutLanguage(org.flowable.bpmn.model.ExtensionElement extensionElement) -
create
-
getKey
public java.lang.String getKey() -
getValue
public java.lang.String getValue() -
getLanguage
public java.lang.String getLanguage() -
getValue
public <V> V getValue(java.util.function.Function<java.lang.String,V> converter)Get the value by applying the converter to it,- Type Parameters:
V- the type of the returned value- Parameters:
converter- to be used to get the value- Returns:
- the converted value
-