com.fitbur.mockito.bytebuddy.matcher.DeclaringFieldMatcher Maven / Gradle / Ivy
package com.fitbur.mockito.bytebuddy.matcher;
import com.fitbur.mockito.bytebuddy.description.field.FieldDescription;
import com.fitbur.mockito.bytebuddy.description.field.FieldList;
import com.fitbur.mockito.bytebuddy.description.type.TypeDefinition;
/**
* An element matcher that checks if a type description declares fields of a given property.
*
* @param The exact type of the annotated element that is matched.
*/
public class DeclaringFieldMatcher extends ElementMatcher.Junction.AbstractBase {
/**
* The field matcher to apply to the declared fields of the matched type description.
*/
private final ElementMatcher super FieldList>> matcher;
/**
* Creates a new matcher for a type's declared fields.
*
* @param matcher The field matcher to apply to the declared fields of the matched type description.
*/
public DeclaringFieldMatcher(ElementMatcher super FieldList extends FieldDescription>> matcher) {
this.matcher = matcher;
}
@Override
public boolean matches(T target) {
return matcher.matches(target.getDeclaredFields());
}
@Override
public boolean equals(Object other) {
return this == other || !(other == null || getClass() != other.getClass())
&& matcher.equals(((DeclaringFieldMatcher>) other).matcher);
}
@Override
public int hashCode() {
return matcher.hashCode();
}
@Override
public String toString() {
return "declaresFields(" + matcher + ")";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy