Interface FunctionInspector
-
- All Known Implementing Classes:
BeanFactoryAwareFunctionRegistry,SimpleFunctionRegistry
@Deprecated public interface FunctionInspector
Deprecated.since 3.1 no longer used by the framework- Author:
- Dave Syer, Oleg Zhurakousky
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default Class<?>getInputType(Object function)Deprecated.since 3.1 no longer used by the frameworkdefault Class<?>getInputWrapper(Object function)Deprecated.since 3.1 no longer used by the frameworkdefault StringgetName(Object function)Deprecated.since 3.1 no longer used by the frameworkdefault Class<?>getOutputType(Object function)Deprecated.since 3.1 no longer used by the frameworkdefault Class<?>getOutputWrapper(Object function)Deprecated.since 3.1 no longer used by the frameworkFunctionRegistration<?>getRegistration(Object function)Deprecated.default booleanisMessage(Object function)Deprecated.since 3.1 no longer used by the framework
-
-
-
Method Detail
-
getRegistration
FunctionRegistration<?> getRegistration(Object function)
Deprecated.
-
isMessage
@Deprecated default boolean isMessage(Object function)
Deprecated.since 3.1 no longer used by the framework
-
getInputType
@Deprecated default Class<?> getInputType(Object function)
Deprecated.since 3.1 no longer used by the framework
-
getOutputType
@Deprecated default Class<?> getOutputType(Object function)
Deprecated.since 3.1 no longer used by the framework
-
getInputWrapper
@Deprecated default Class<?> getInputWrapper(Object function)
Deprecated.since 3.1 no longer used by the framework
-
getOutputWrapper
@Deprecated default Class<?> getOutputWrapper(Object function)
Deprecated.since 3.1 no longer used by the framework
-
getName
@Deprecated default String getName(Object function)
Deprecated.since 3.1 no longer used by the framework
-
-