Returns true if this type is a subtype of the given type. "Subtype" is defined according to the rules for type arguments introduced with Java generics. @since 19.0
(TypeToken<?> type)
| 468 | |
| 469 | |
| 470 | public final boolean isSubtypeOf(TypeToken<?> type) { |
| 471 | return isSubtypeOf(type.getType()); |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * Returns true if this type is a subtype of the given {@code type}. "Subtype" is defined |
no test coverage detected