Class EdorasVisProperty
- java.lang.Object
-
- com.flowable.platform.common.util.EdorasVisProperty
-
public class EdorasVisProperty extends java.lang.Object
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EdorasVisProperty
create(org.flowable.bpmn.model.ExtensionElement extensionElement)
static EdorasVisProperty
createWithoutLanguage(org.flowable.bpmn.model.ExtensionElement extensionElement)
java.lang.String
getKey()
java.lang.String
getLanguage()
java.lang.String
getValue()
<V> V
getValue(java.util.function.Function<java.lang.String,V> converter)
Get the value by applying the converter to it,static boolean
isEdorasVisProperty(org.flowable.bpmn.model.ExtensionElement extensionElement)
-
-
-
Method Detail
-
isEdorasVisProperty
public static boolean isEdorasVisProperty(org.flowable.bpmn.model.ExtensionElement extensionElement)
-
createWithoutLanguage
public static EdorasVisProperty createWithoutLanguage(org.flowable.bpmn.model.ExtensionElement extensionElement)
-
create
public static EdorasVisProperty create(org.flowable.bpmn.model.ExtensionElement extensionElement)
-
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
-
-