| org.jbpm.context.exe.Converter
All known Subclasses: org.jbpm.context.exe.converter.FloatToStringConverter, org.jbpm.context.exe.converter.DoubleToStringConverter, org.jbpm.context.exe.converter.ShortToLongConverter, org.jbpm.context.exe.converter.IntegerToLongConverter, org.jbpm.context.exe.converter.ByteToLongConverter, org.jbpm.context.exe.converter.BooleanToStringConverter, org.jbpm.context.exe.converter.SerializableToByteArrayConverter, org.jbpm.context.exe.converter.CharacterToStringConverter, org.jbpm.context.exe.converter.BytesToByteArrayConverter, org.jbpm.context.exe.converter.FloatToDoubleConverter, org.jbpm.context.exe.converter.DateToLongConverter,
Converter | public interface Converter extends Serializable(Code) | | converts plain objects to objects that are
persistable via a subclass of VariableInstance.
|
Method Summary | |
Object | convert(Object o) converts a given object to its persistable format. | Object | revert(Object o) reverts a persisted object to its original form. | boolean | supports(Object value) is true if this converter supports the given type, false otherwise. |
supports | boolean supports(Object value)(Code) | | is true if this converter supports the given type, false otherwise.
|
|
|