Returns a new WildcardType with upperBound.
(Type upperBound)
| 161 | /** Returns a new {@link WildcardType} with {@code upperBound}. */ |
| 162 | |
| 163 | @VisibleForTesting |
| 164 | static WildcardType subtypeOf(Type upperBound) { |
| 165 | return new WildcardTypeImpl(new Type[0], new Type[] {upperBound}); |
| 166 | } |
| 167 | |
| 168 | /** Returns a new {@link WildcardType} with {@code lowerBound}. */ |
| 169 |
no outgoing calls
no test coverage detected