Returns a new WildcardType with lowerBound.
(Type lowerBound)
| 167 | /** Returns a new {@link WildcardType} with {@code lowerBound}. */ |
| 168 | |
| 169 | @VisibleForTesting |
| 170 | static WildcardType supertypeOf(Type lowerBound) { |
| 171 | return new WildcardTypeImpl(new Type[] {lowerBound}, new Type[] {Object.class}); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Returns human readable string representation of {@code type}. |