Example usage for javax.lang.model.type DeclaredType getTypeArguments

List of usage examples for javax.lang.model.type DeclaredType getTypeArguments

Introduction

In this page you can find the example usage for javax.lang.model.type DeclaredType getTypeArguments.

Prototype

List<? extends TypeMirror> getTypeArguments();

Source Link

Document

Returns the actual type arguments of this type.

Usage