Interface AutowiredArguments
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Resolved arguments to be autowired.
- Since:
- 6.0
- Author:
- Phillip Webb, Stephane Nicoll
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptiondefault <T> Tget(int index) Return the resolved argument at the specified index.default <T> TReturn the resolved argument at the specified index.default ObjectgetObject(int index) Return the resolved argument at the specified index.static AutowiredArgumentsFactory method to create a newAutowiredArgumentsinstance from the given object array.Object[]toArray()Return the arguments as an object array.
- 
Method Details- 
getReturn the resolved argument at the specified index.- Type Parameters:
- T- the type of the argument
- Parameters:
- index- the argument index
- requiredType- the required argument type
- Returns:
- the argument
 
- 
getReturn the resolved argument at the specified index.- Type Parameters:
- T- the type of the argument
- Parameters:
- index- the argument index
- Returns:
- the argument
 
- 
getObjectReturn the resolved argument at the specified index.- Parameters:
- index- the argument index
- Returns:
- the argument
 
- 
toArrayObject[] toArray()Return the arguments as an object array.- Returns:
- the arguments as an object array
 
- 
ofFactory method to create a newAutowiredArgumentsinstance from the given object array.- Parameters:
- arguments- the arguments
- Returns:
- a new AutowiredArgumentsinstance
 
 
-