org.bbottema.javareflection.model.MethodModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-reflection Show documentation
Show all versions of java-reflection Show documentation
Java Reflection provides a small package with nifty reflection features that will help with finding constructors, methods and value conversions
/*
* Copyright (C) ${project.inceptionYear} Benny Bottema ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.bbottema.javareflection.model;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.EnumSet;
import static java.util.EnumSet.allOf;
@SuppressWarnings("unused")
public enum MethodModifier {
PUBLIC(Modifier.PUBLIC),
PROTECTED(Modifier.PROTECTED),
PRIVATE(Modifier.PRIVATE),
ABSTRACT(Modifier.ABSTRACT),
DEFAULT(-1),
STATIC(Modifier.STATIC),
FINAL(Modifier.FINAL),
SYNCHRONIZED(Modifier.SYNCHRONIZED),
NATIVE(Modifier.NATIVE),
STRICT(Modifier.STRICT);
public static final EnumSet MATCH_ANY = allOf(MethodModifier.class);
private final int modifierFlag;
MethodModifier(int modifierFlag) {
this.modifierFlag = modifierFlag;
}
public static boolean meetsModifierRequirements(Method method, EnumSet modifiers) {
final int m = method.getModifiers();
for (MethodModifier methodModifier : modifiers) {
if (methodModifier != MethodModifier.DEFAULT) {
if ((m & methodModifier.modifierFlag) != 0) {
return true;
}
} else {
if (!Modifier.isPrivate(m) && !Modifier.isProtected(m) && !Modifier.isPublic(m)) {
return true;
}
}
}
return false;
}
}