find_type_arguments
Find all locations where a specified fully qualified type is used as a generic type argument. Analyze generic usage patterns and discover collections or containers of that type.
Instructions
Find all usages of a type as a generic type argument (List, Map<K, Foo>).
JDT-UNIQUE: This fine-grained search is not available in LSP.
USAGE: Provide fully qualified type name OUTPUT: All locations where the type is used as a generic argument
Useful for:
Understanding generic usage patterns
Finding all collections/containers of a type
API design analysis
Requires load_project to be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| typeName | Yes | Fully qualified type name to find in generic arguments | |
| maxResults | No | Maximum results to return (default 100) |