org.fuwjax.oss.util.Members Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wheatgrass Show documentation
Show all versions of wheatgrass Show documentation
Healthy Dependency Injection
/*
* Copyright (C) 2015 fuwjax.org ([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.fuwjax.oss.util;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.Arrays;
import java.util.List;
import java.util.function.Predicate;
import java.util.stream.Collectors;
public class Members {
public static List fields(final Class> type, final Predicate super Field> filter) {
return Arrays.asList(type.getDeclaredFields()).stream().filter(filter).map(Members::access).collect(Collectors.toList());
}
public static List methods(final Class> type, final Predicate super Method> filter) {
return Arrays.asList(type.getDeclaredMethods()).stream().filter(filter).map(Members::access).collect(Collectors.toList());
}
public static List> constructors(final Class> type, final Predicate super Constructor>> filter) {
return Arrays.asList(type.getDeclaredConstructors()).stream().filter(filter).map(Members::access).collect(Collectors.toList());
}
public static T access(final T member) {
member.setAccessible(true);
return member;
}
public static boolean isPublic(final Member member) {
return Modifier.isPublic(member.getModifiers());
}
public static boolean isProtected(final Member member) {
return Modifier.isProtected(member.getModifiers());
}
public static boolean isNotStatic(Member member){
return !Modifier.isStatic(member.getModifiers());
}
}