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