Package org.kie.dmn.feel.marshaller
Interface FEELMarshaller<T>
-
- All Known Implementing Classes:
FEELCodeMarshaller,FEELStringMarshaller
public interface FEELMarshaller<T>A generic marshaller interface for FEEL values
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tmarshall(java.lang.Object value)Marshalls the given FEEL value into an object of type Tjava.lang.Objectunmarshall(Type feelType, T value)Unmarshals the marshalled T value into a FEEL object
-
-
-
Method Detail
-
marshall
T marshall(java.lang.Object value)
Marshalls the given FEEL value into an object of type T- Parameters:
value- the FEEL value to be marshalled- Returns:
- the marshalled T value
-
-