io.toolisticon.aptk.tools.matcher.impl.IsVariableElementMatcher Maven / Gradle / Ivy
package io.toolisticon.aptk.tools.matcher.impl;
import io.toolisticon.aptk.tools.ElementUtils;
import io.toolisticon.aptk.tools.matcher.ImplicitMatcher;
import javax.lang.model.element.Element;
/**
* Implicit matcher that checks if a passed element is an VariableElement.
*/
public class IsVariableElementMatcher implements ImplicitMatcher {
@Override
public boolean check(ELEMENT element) {
return ElementUtils.CastElement.isVariableElement(element);
}
}