@@ -185,88 +185,107 @@ public static ClassTypeSig of(ClassTypeSig outerType, String className, TypeArg.
185
185
/**
186
186
* Models the type argument.
187
187
*
188
+ * @sealedGraph
188
189
* @since 22
189
190
*/
190
191
@ PreviewFeature (feature = PreviewFeature .Feature .CLASSFILE_API )
191
- public sealed interface TypeArg
192
- permits SignaturesImpl .TypeArgImpl {
192
+ public sealed interface TypeArg {
193
193
194
194
/**
195
- * Indicator for whether a wildcard has default bound, no bound,
196
- * an upper bound, or a lower bound
197
- *
198
- * @since 22
195
+ * Models an unbounded type argument {@code *}.
196
+ * @since 23
199
197
*/
200
198
@ PreviewFeature (feature = PreviewFeature .Feature .CLASSFILE_API )
201
- public enum WildcardIndicator {
202
-
203
- /**
204
- * default bound wildcard (empty)
205
- */
206
- DEFAULT ,
207
-
208
- /**
209
- * unbounded indicator {@code *}
210
- */
211
- UNBOUNDED ,
199
+ public sealed interface Unbounded extends TypeArg permits SignaturesImpl .UnboundedTypeArgImpl {
200
+ }
212
201
213
- /**
214
- * upper-bounded indicator {@code +}
215
- */
216
- EXTENDS ,
202
+ /**
203
+ * Models a type argument with an explicit bound type.
204
+ * @since 23
205
+ */
206
+ @ PreviewFeature (feature = PreviewFeature .Feature .CLASSFILE_API )
207
+ public sealed interface Bounded extends TypeArg permits SignaturesImpl .TypeArgImpl {
217
208
218
209
/**
219
- * lower-bounded indicator {@code -}
210
+ * Models a type argument's wildcard indicator.
211
+ * @since 23
220
212
*/
221
- SUPER ;
213
+ @ PreviewFeature (feature = PreviewFeature .Feature .CLASSFILE_API )
214
+ public enum WildcardIndicator {
215
+
216
+ /**
217
+ * No wildcard (empty), an exact type. Also known as
218
+ * {@index invariant}.
219
+ */
220
+ NONE ,
221
+
222
+ /**
223
+ * Upper-bound indicator {@code +}. Also known as
224
+ * {@index covariant}.
225
+ */
226
+ EXTENDS ,
227
+
228
+ /**
229
+ * Lower-bound indicator {@code -}. Also known as
230
+ * {@index contravariant}.
231
+ */
232
+ SUPER ;
233
+ }
234
+
235
+ /** {@return the kind of wildcard} */
236
+ WildcardIndicator wildcardIndicator ();
237
+
238
+ /** {@return the signature of the type bound} */
239
+ RefTypeSig boundType ();
222
240
}
223
241
224
- /** {@return the wildcard indicator} */
225
- WildcardIndicator wildcardIndicator ();
226
-
227
- /** {@return the signature of the type bound, if any} */
228
- Optional <RefTypeSig > boundType ();
229
-
230
242
/**
231
243
* {@return a bounded type arg}
232
244
* @param boundType the bound
245
+ * @since 23
233
246
*/
234
- public static TypeArg of (RefTypeSig boundType ) {
247
+ public static TypeArg . Bounded of (RefTypeSig boundType ) {
235
248
requireNonNull (boundType );
236
- return of ( WildcardIndicator .DEFAULT , Optional . of ( boundType ) );
249
+ return bounded ( Bounded . WildcardIndicator .NONE , boundType );
237
250
}
238
251
239
252
/**
240
253
* {@return an unbounded type arg}
254
+ * @since 23
241
255
*/
242
- public static TypeArg unbounded () {
243
- return of ( WildcardIndicator . UNBOUNDED , Optional . empty ()) ;
256
+ public static TypeArg . Unbounded unbounded () {
257
+ return SignaturesImpl . UnboundedTypeArgImpl . INSTANCE ;
244
258
}
245
259
246
260
/**
247
261
* {@return an upper-bounded type arg}
248
262
* @param boundType the upper bound
263
+ * @since 23
249
264
*/
250
- public static TypeArg extendsOf (RefTypeSig boundType ) {
265
+ public static TypeArg . Bounded extendsOf (RefTypeSig boundType ) {
251
266
requireNonNull (boundType );
252
- return of ( WildcardIndicator .EXTENDS , Optional . of ( boundType ) );
267
+ return bounded ( Bounded . WildcardIndicator .EXTENDS , boundType );
253
268
}
254
269
255
270
/**
256
271
* {@return a lower-bounded type arg}
257
272
* @param boundType the lower bound
273
+ * @since 23
258
274
*/
259
- public static TypeArg superOf (RefTypeSig boundType ) {
275
+ public static TypeArg . Bounded superOf (RefTypeSig boundType ) {
260
276
requireNonNull (boundType );
261
- return of ( WildcardIndicator .SUPER , Optional . of ( boundType ) );
277
+ return bounded ( Bounded . WildcardIndicator .SUPER , boundType );
262
278
}
263
279
264
280
/**
265
281
* {@return a bounded type arg}
266
282
* @param wildcard the wild card
267
283
* @param boundType optional bound type
284
+ * @since 23
268
285
*/
269
- public static TypeArg of (WildcardIndicator wildcard , Optional <RefTypeSig > boundType ) {
286
+ public static TypeArg .Bounded bounded (Bounded .WildcardIndicator wildcard , RefTypeSig boundType ) {
287
+ requireNonNull (wildcard );
288
+ requireNonNull (boundType );
270
289
return new SignaturesImpl .TypeArgImpl (wildcard , boundType );
271
290
}
272
291
}
0 commit comments