@@ -1550,33 +1550,14 @@ public enum ForTypeAnnotations implements Visitor<Boolean> {
1550
1550
INSTANCE ;
1551
1551
1552
1552
/**
1553
- * The {@link ElementType}'s {@code TYPE_USE} constant .
1553
+ * The name of the {@code ElementType# TYPE_USE} element .
1554
1554
*/
1555
- @ MaybeNull
1556
- private final ElementType typeUse ;
1557
-
1558
- /**
1559
- * The {@link ElementType}'s {@code TYPE_PARAMETER} constant.
1560
- */
1561
- @ MaybeNull
1562
- private final ElementType typeParameter ;
1555
+ private static final String TYPE_USE = "TYPE_USE" ;
1563
1556
1564
1557
/**
1565
- * Creates a new type annotation validator .
1558
+ * The name of the {@code ElementType#TYPE_PARAMETER} element .
1566
1559
*/
1567
- ForTypeAnnotations () {
1568
- ElementType typeUse , typeParameter ;
1569
- try {
1570
- typeUse = Enum .valueOf (ElementType .class , "TYPE_USE" );
1571
- typeParameter = Enum .valueOf (ElementType .class , "TYPE_PARAMETER" );
1572
- } catch (IllegalArgumentException ignored ) {
1573
- // Setting these values null results in this validator always failing for pre Java-8 VMs.
1574
- typeUse = null ;
1575
- typeParameter = null ;
1576
- }
1577
- this .typeUse = typeUse ;
1578
- this .typeParameter = typeParameter ;
1579
- }
1560
+ private static final String TYPE_PARAMETER = "TYPE_PARAMETER" ;
1580
1561
1581
1562
/**
1582
1563
* Validates the type annotations on a formal type variable but not on its bounds..
@@ -1587,7 +1568,7 @@ public enum ForTypeAnnotations implements Visitor<Boolean> {
1587
1568
public static boolean ofFormalTypeVariable (Generic typeVariable ) {
1588
1569
Set <TypeDescription > annotationTypes = new HashSet <TypeDescription >();
1589
1570
for (AnnotationDescription annotationDescription : typeVariable .getDeclaredAnnotations ()) {
1590
- if (!annotationDescription .isSupportedOn (INSTANCE . typeParameter ) || !annotationTypes .add (annotationDescription .getAnnotationType ())) {
1571
+ if (!annotationDescription .isSupportedOn (TYPE_PARAMETER ) || !annotationTypes .add (annotationDescription .getAnnotationType ())) {
1591
1572
return false ;
1592
1573
}
1593
1574
}
@@ -1658,7 +1639,7 @@ public Boolean onNonGenericType(Generic typeDescription) {
1658
1639
private boolean isValid (Generic typeDescription ) {
1659
1640
Set <TypeDescription > annotationTypes = new HashSet <TypeDescription >();
1660
1641
for (AnnotationDescription annotationDescription : typeDescription .getDeclaredAnnotations ()) {
1661
- if (!annotationDescription .isSupportedOn (typeUse ) || !annotationTypes .add (annotationDescription .getAnnotationType ())) {
1642
+ if (!annotationDescription .isSupportedOn (TYPE_USE ) || !annotationTypes .add (annotationDescription .getAnnotationType ())) {
1662
1643
return false ;
1663
1644
}
1664
1645
}
0 commit comments