-
-
Notifications
You must be signed in to change notification settings - Fork 46
RFE: Add a convenience method for the full set of types for a type #50
Copy link
Copy link
Open
Labels
good first issueIssue that seems easy to resolve and is likely a good candidate for contributors new to projectIssue that seems easy to resolve and is likely a good candidate for contributors new to projecthacktoberfestIssue related to Hactoberfest2020 activities, eligible for additional rewardsIssue related to Hactoberfest2020 activities, eligible for additional rewards
Metadata
Metadata
Assignees
Labels
good first issueIssue that seems easy to resolve and is likely a good candidate for contributors new to projectIssue that seems easy to resolve and is likely a good candidate for contributors new to projecthacktoberfestIssue related to Hactoberfest2020 activities, eligible for additional rewardsIssue related to Hactoberfest2020 activities, eligible for additional rewards
Type
Fields
Give feedbackNo fields configured for issues without a type.
Thanks for a great project!
It would be helpful if there were a method on
ResolvedTypethat could provide aListorSetof all implemented and extendedTypes.I know that
ResolvedTypehasgetImplementedInterfaces(). And I know thatTypeResolverhasgetParentClass(). It would be nice if there were a method likepublic Set<ResolvedType> getAllTypes()or something of that nature implemented in terms of the other two.I would expect, for example, that if it were passed
String.classthe returned set would include types representing:ObjectComparable<String>CharSequenceStringSerializable