Interface ActualParameter
- All Known Implementing Classes:
ActionMethodParameter, ActionMethodReturn
public interface ActualParameter
Common interface for types that expose the actual (possibly generic) class of an
action method parameter or return value.
- Since:
- 25.1
- Author:
- 渔民小镇
- date:
- 2025-09-09
-
Method Details
-
isList
boolean isList()Whether it is a List type- Returns:
- true if it is a List type
-
getActualTypeArgumentClass
Class<?> getActualTypeArgumentClass()The generic type of the List, also known as the method return value type- Returns:
- The generic type of the List
-