get_type_members
Retrieve all methods, fields, and nested types for a specific Java class or interface to analyze its structure and capabilities.
Instructions
Get all members (methods, fields, nested types) of a specific type.
USAGE: Provide a type name to get all its members OUTPUT: Lists of methods, fields, and nested types with their details
Options:
includeInherited: Also include members from superclasses/interfaces
memberKind: Filter to "method", "field", or "type" only
Requires load_project to be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| includeInherited | No | Include inherited members (default false) | |
| typeName | Yes | Fully qualified or simple type name | |
| memberKind | No | Filter: 'method', 'field', 'type', or null for all |