@@ -346,7 +346,7 @@ class SuffixingRandom extends Suffixing {
346
346
* @param suffix The suffix for the generated class.
347
347
*/
348
348
public SuffixingRandom (String suffix ) {
349
- this (suffix , BaseNameResolver .ForUnnamedType .INSTANCE );
349
+ this (suffix , Suffixing . BaseNameResolver .ForUnnamedType .INSTANCE );
350
350
}
351
351
352
352
/**
@@ -359,7 +359,7 @@ public SuffixingRandom(String suffix) {
359
359
* no prefix is added.
360
360
*/
361
361
public SuffixingRandom (String suffix , String javaLangPackagePrefix ) {
362
- this (suffix , BaseNameResolver .ForUnnamedType .INSTANCE , javaLangPackagePrefix );
362
+ this (suffix , Suffixing . BaseNameResolver .ForUnnamedType .INSTANCE , javaLangPackagePrefix );
363
363
}
364
364
365
365
/**
@@ -368,8 +368,21 @@ public SuffixingRandom(String suffix, String javaLangPackagePrefix) {
368
368
*
369
369
* @param suffix The suffix for the generated class.
370
370
* @param baseNameResolver The base name resolver that is queried for locating the base name.
371
+ * @deprecated Use {@link SuffixingRandom#SuffixingRandom(String, Suffixing.BaseNameResolver)}.
371
372
*/
373
+ @ Deprecated
372
374
public SuffixingRandom (String suffix , BaseNameResolver baseNameResolver ) {
375
+ this (suffix , (Suffixing .BaseNameResolver ) baseNameResolver );
376
+ }
377
+
378
+ /**
379
+ * Creates an immutable naming strategy with a given suffix but moves types that subclass types within
380
+ * the {@code java.lang} package into Byte Buddy's package namespace.
381
+ *
382
+ * @param suffix The suffix for the generated class.
383
+ * @param baseNameResolver The base name resolver that is queried for locating the base name.
384
+ */
385
+ public SuffixingRandom (String suffix , Suffixing .BaseNameResolver baseNameResolver ) {
373
386
this (suffix , baseNameResolver , BYTE_BUDDY_RENAME_PACKAGE );
374
387
}
375
388
@@ -382,8 +395,24 @@ public SuffixingRandom(String suffix, BaseNameResolver baseNameResolver) {
382
395
* @param javaLangPackagePrefix The fallback namespace for type's that subclass types within the
383
396
* {@code java.*} namespace. If The prefix is set to the empty string,
384
397
* no prefix is added.
398
+ * @deprecated Use {@link SuffixingRandom#SuffixingRandom(String, Suffixing.BaseNameResolver, String)}.
385
399
*/
400
+ @ Deprecated
386
401
public SuffixingRandom (String suffix , BaseNameResolver baseNameResolver , String javaLangPackagePrefix ) {
402
+ this (suffix , (Suffixing .BaseNameResolver ) baseNameResolver , javaLangPackagePrefix );
403
+ }
404
+
405
+ /**
406
+ * Creates an immutable naming strategy with a given suffix but moves types that subclass types within
407
+ * the {@code java.lang} package into a given namespace.
408
+ *
409
+ * @param suffix The suffix for the generated class.
410
+ * @param baseNameResolver The base name resolver that is queried for locating the base name.
411
+ * @param javaLangPackagePrefix The fallback namespace for type's that subclass types within the
412
+ * {@code java.*} namespace. If The prefix is set to the empty string,
413
+ * no prefix is added.
414
+ */
415
+ public SuffixingRandom (String suffix , Suffixing .BaseNameResolver baseNameResolver , String javaLangPackagePrefix ) {
387
416
this (suffix , baseNameResolver , javaLangPackagePrefix , new RandomString ());
388
417
}
389
418
@@ -397,8 +426,25 @@ public SuffixingRandom(String suffix, BaseNameResolver baseNameResolver, String
397
426
* {@code java.*} namespace. If The prefix is set to the empty string,
398
427
* no prefix is added.
399
428
* @param randomString The random string instance to use.
429
+ * @deprecated Use {@link SuffixingRandom#SuffixingRandom(String, Suffixing.BaseNameResolver, String, RandomString)}.
400
430
*/
431
+ @ Deprecated
401
432
public SuffixingRandom (String suffix , BaseNameResolver baseNameResolver , String javaLangPackagePrefix , RandomString randomString ) {
433
+ this (suffix , (Suffixing .BaseNameResolver ) baseNameResolver , javaLangPackagePrefix , randomString );
434
+ }
435
+
436
+ /**
437
+ * Creates an immutable naming strategy with a given suffix but moves types that subclass types within
438
+ * the {@code java.lang} package into a given namespace.
439
+ *
440
+ * @param suffix The suffix for the generated class.
441
+ * @param baseNameResolver The base name resolver that is queried for locating the base name.
442
+ * @param javaLangPackagePrefix The fallback namespace for type's that subclass types within the
443
+ * {@code java.*} namespace. If The prefix is set to the empty string,
444
+ * no prefix is added.
445
+ * @param randomString The random string instance to use.
446
+ */
447
+ public SuffixingRandom (String suffix , Suffixing .BaseNameResolver baseNameResolver , String javaLangPackagePrefix , RandomString randomString ) {
402
448
super (suffix , baseNameResolver , javaLangPackagePrefix );
403
449
this .randomString = randomString ;
404
450
}
@@ -407,6 +453,74 @@ public SuffixingRandom(String suffix, BaseNameResolver baseNameResolver, String
407
453
protected String name (TypeDescription superClass ) {
408
454
return super .name (superClass ) + "$" + randomString .nextString ();
409
455
}
456
+
457
+ /**
458
+ * A base name resolver is responsible for resolving a name onto which the suffix is appended.
459
+ *
460
+ * @deprecated Use {@link Suffixing.BaseNameResolver}.
461
+ */
462
+ @ Deprecated
463
+ public interface BaseNameResolver extends Suffixing .BaseNameResolver {
464
+
465
+ /**
466
+ * Uses the unnamed type's super type's name as the resolved name.
467
+ *
468
+ * @deprecated Use {@link Suffixing.BaseNameResolver.ForUnnamedType}.
469
+ */
470
+ @ Deprecated
471
+ enum ForUnnamedType implements BaseNameResolver {
472
+
473
+ /**
474
+ * The singleton instance.
475
+ */
476
+ INSTANCE ;
477
+
478
+ /**
479
+ * {@inheritDoc}
480
+ */
481
+ public String resolve (TypeDescription typeDescription ) {
482
+ return typeDescription .getName ();
483
+ }
484
+ }
485
+
486
+ /**
487
+ * Uses a specific type's name as the resolved name.
488
+ *
489
+ * @deprecated Use {@link Suffixing.BaseNameResolver.ForGivenType}.
490
+ */
491
+ @ Deprecated
492
+ @ HashCodeAndEqualsPlugin .Enhance
493
+ class ForGivenType extends Suffixing .BaseNameResolver .ForGivenType implements BaseNameResolver {
494
+
495
+ /**
496
+ * Creates a new base name resolver that resolves a using the name of a given type.
497
+ *
498
+ * @param typeDescription The type description which represents the resolved name.
499
+ */
500
+ public ForGivenType (TypeDescription typeDescription ) {
501
+ super (typeDescription );
502
+ }
503
+ }
504
+
505
+ /**
506
+ * A base name resolver that simply returns a fixed value.
507
+ *
508
+ * @deprecated Use {@link Suffixing.BaseNameResolver.ForFixedValue}.
509
+ */
510
+ @ Deprecated
511
+ @ HashCodeAndEqualsPlugin .Enhance
512
+ class ForFixedValue extends Suffixing .BaseNameResolver .ForFixedValue implements BaseNameResolver {
513
+
514
+ /**
515
+ * Creates a new base name resolver for a fixed name.
516
+ *
517
+ * @param name The fixed name
518
+ */
519
+ public ForFixedValue (String name ) {
520
+ super (name );
521
+ }
522
+ }
523
+ }
410
524
}
411
525
412
526
/**
0 commit comments