Interface MethodTypeParameterData

Data for a method's type parameter in MethodData#typeParameters.

interface MethodTypeParameterData {
    description: null | NodeContent;
    entityType: "methodTypeParameter";
    extends: null | string;
    id: string;
    name: string;
    signature: string;
}

Hierarchy (View Summary)

Properties

description: null | NodeContent

The entity's description, if any.

entityType: "methodTypeParameter"

The entity's type.

extends: null | string

The type parameter's extension.

id: string

The entity's unique id (relative to others in the same context). Used as key in collections.

Specifically:

  • In classes, enums, interfaces, external objects and annotations: the qualifiedName.
  • In packages, enum constants, fields, method type parameters, object type parameters and parameters: the name.
  • In methods: the prototype, to avoid conflicts with overloaded methods.
name: string

The entity's name.

signature: string

The entity's signature.