Package com.github.dozermapper.core.el
Class NoopELEngine
- java.lang.Object
-
- com.github.dozermapper.core.el.NoopELEngine
-
-
Constructor Summary
Constructors Constructor Description NoopELEngine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringresolve(String expression)Note, this method returns the expression passed invoidsetFunction(String prefix, Method method)Note, this method does nothingvoidsetFunction(String prefix, String name, Method method)Note, this method does nothing<T> voidsetVariable(String key, T value)Note, this method does nothing<T> voidsetVariable(String key, T value, Class<? extends T> type)Note, this method does nothing
-
-
-
Method Detail
-
setVariable
public <T> void setVariable(String key, T value)
Note, this method does nothing- Specified by:
setVariablein interfaceELEngine- Type Parameters:
T- generic type of value- Parameters:
key- key to storevalue- value to resolve
-
setVariable
public <T> void setVariable(String key, T value, Class<? extends T> type)
Note, this method does nothing- Specified by:
setVariablein interfaceELEngine- Type Parameters:
T- generic type of value- Parameters:
key- key to storevalue- value to resolvetype- type of value
-
setFunction
public void setFunction(String prefix, Method method)
Note, this method does nothing- Specified by:
setFunctionin interfaceELEngine- Parameters:
prefix- the prefix of the functionmethod- method to resolve
-
setFunction
public void setFunction(String prefix, String name, Method method)
Note, this method does nothing- Specified by:
setFunctionin interfaceELEngine- Parameters:
prefix- the prefix of the functionname- name of methhodmethod- method to resolve
-
-