if (method.isAnnotationPresent(Ignore.class)) {
return true;
}
IfProfileValue ifProfileValue = method.getAnnotation(IfProfileValue.class);
if (ifProfileValue == null) {
return false;
}
String environmentValue = extractEnvironmentValue(ifProfileValue);