Class DoubleAttribute
- java.lang.Object
-
- org.camunda.bpm.model.xml.impl.type.attribute.AttributeImpl<Double>
-
- org.camunda.bpm.model.xml.impl.type.attribute.DoubleAttribute
-
public class DoubleAttribute extends AttributeImpl<Double>
- Author:
- Sebastian Menski
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected StringconvertModelValueToXmlValue(Double modelValue)to be implemented by subclasses: converts the raw (String) value of the attribute to the type required by the modelprotected DoubleconvertXmlValueToModelValue(String rawValue)to be implemented by subclasses: converts the raw (String) value of the attribute to the type required by the model-
Methods inherited from class org.camunda.bpm.model.xml.impl.type.attribute.AttributeImpl
getAttributeName, getDefaultValue, getIncomingReferences, getNamespaceUri, getOutgoingReferences, getOwningElementType, getValue, isIdAttribute, isRequired, registerIncoming, registerOutgoingReference, removeAttribute, setAttributeName, setDefaultValue, setId, setNamespaceUri, setRequired, setValue, setValue, unlinkReference, updateIncomingReferences
-
-
-
-
Method Detail
-
convertXmlValueToModelValue
protected Double convertXmlValueToModelValue(String rawValue)
Description copied from class:AttributeImplto be implemented by subclasses: converts the raw (String) value of the attribute to the type required by the model- Specified by:
convertXmlValueToModelValuein classAttributeImpl<Double>- Returns:
- the converted value
-
convertModelValueToXmlValue
protected String convertModelValueToXmlValue(Double modelValue)
Description copied from class:AttributeImplto be implemented by subclasses: converts the raw (String) value of the attribute to the type required by the model- Specified by:
convertModelValueToXmlValuein classAttributeImpl<Double>- Returns:
- the converted value
-
-