Skip to content

Commit 7f55173

Browse files
committed
Use textual representation for targets to avoid missing enumeration elements.
1 parent c88285c commit 7f55173

File tree

2 files changed

+12
-36
lines changed

2 files changed

+12
-36
lines changed

byte-buddy-dep/src/main/java/net/bytebuddy/description/annotation/AnnotationDescription.java

+6-11
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,12 @@ public interface AnnotationDescription {
110110
Set<ElementType> getElementTypes();
111111

112112
/**
113-
* Checks if this annotation is supported on the supplied element type or returns {@code true}
114-
* if {@code null} is supplied.
113+
* Checks if this annotation is supported on the supplied element type.
115114
*
116-
* @param elementType The element type to check or {@code null} to return {@code true}. This can be helpful
117-
* to make this method robust for VMs that do not define {@link ElementType}s that are
118-
* available on newer VMs.
119-
* @return {@code true} if the supplied element type is supported by this annotation or is {@code null}
115+
* @param elementType The element type to check.
116+
* @return {@code true} if the supplied element type is supported by this annotation.
120117
*/
121-
boolean isSupportedOn(@MaybeNull ElementType elementType);
118+
boolean isSupportedOn(ElementType elementType);
122119

123120
/**
124121
* Checks if this annotation is supported on the supplied element type.
@@ -502,10 +499,8 @@ public Set<ElementType> getElementTypes() {
502499
/**
503500
* {@inheritDoc}
504501
*/
505-
public boolean isSupportedOn(@MaybeNull ElementType elementType) {
506-
return elementType == null
507-
? true
508-
: isSupportedOn(elementType.name());
502+
public boolean isSupportedOn(ElementType elementType) {
503+
return isSupportedOn(elementType.name());
509504
}
510505

511506
/**

byte-buddy-dep/src/main/java/net/bytebuddy/description/type/TypeDescription.java

+6-25
Original file line numberDiff line numberDiff line change
@@ -1550,33 +1550,14 @@ public enum ForTypeAnnotations implements Visitor<Boolean> {
15501550
INSTANCE;
15511551

15521552
/**
1553-
* The {@link ElementType}'s {@code TYPE_USE} constant.
1553+
* The name of the {@code ElementType#TYPE_USE} element.
15541554
*/
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";
15631556

15641557
/**
1565-
* Creates a new type annotation validator.
1558+
* The name of the {@code ElementType#TYPE_PARAMETER} element.
15661559
*/
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";
15801561

15811562
/**
15821563
* Validates the type annotations on a formal type variable but not on its bounds..
@@ -1587,7 +1568,7 @@ public enum ForTypeAnnotations implements Visitor<Boolean> {
15871568
public static boolean ofFormalTypeVariable(Generic typeVariable) {
15881569
Set<TypeDescription> annotationTypes = new HashSet<TypeDescription>();
15891570
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())) {
15911572
return false;
15921573
}
15931574
}
@@ -1658,7 +1639,7 @@ public Boolean onNonGenericType(Generic typeDescription) {
16581639
private boolean isValid(Generic typeDescription) {
16591640
Set<TypeDescription> annotationTypes = new HashSet<TypeDescription>();
16601641
for (AnnotationDescription annotationDescription : typeDescription.getDeclaredAnnotations()) {
1661-
if (!annotationDescription.isSupportedOn(typeUse) || !annotationTypes.add(annotationDescription.getAnnotationType())) {
1642+
if (!annotationDescription.isSupportedOn(TYPE_USE) || !annotationTypes.add(annotationDescription.getAnnotationType())) {
16621643
return false;
16631644
}
16641645
}

0 commit comments

Comments
 (0)