- get(Class, String) - Static method in class org.yop.reflection.Reflection
-
Get a field from a class or superclass using the field name.
- get1ArgParameter(Field) - Static method in class org.yop.reflection.Reflection
-
Return the type parameter for a 1-arg generic field.
- getAnnotation(Class, Class<A>) - Static method in class org.yop.reflection.Reflection
-
Find the given annotation instance on the given target class or from its class hierarchy.
- getCollectionTarget(Field) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a field which is a collection.
- getConstructor(Class<T>, Class<?>) - Static method in class org.yop.reflection.Reflection
-
Get the constructor for the given class with the given other class as single parameter.
- getDeclaredFields(Class) - Static method in class org.yop.reflection.ReflectionCache
-
- getFields(Class) - Static method in class org.yop.reflection.Reflection
-
Get all the non synthetic fields of a class.
- getFields(Class, Class<? extends Annotation>) - Static method in class org.yop.reflection.Reflection
-
Get all non synthetic fields of a class, with a given annotation.
- getGetterCollectionTarget(Class<S>, Function<S, ? extends Collection<T>>) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a getter when the field is a collection.
- getGetterTarget(Class<S>, Function<S, T>) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a getter.
- getMethod(Class<?>, String, Class<?>...) - Static method in class org.yop.reflection.Reflection
-
Get an existing method on a given class, with the given parameters.
- getMethods(Class<?>) - Static method in class org.yop.reflection.Reflection
-
Gets an array of all methods in a class hierarchy walking up recursively to parent classes.
- getSetterCollectionTarget(Class<S>, BiConsumer<S, ? extends Collection<T>>) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a setter when the field is a collection.
- getSetterTarget(Class<S>, BiConsumer<S, T>) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a setter.
- getTarget(Field) - Static method in class org.yop.reflection.Reflection
-
Find the target class of a field be it a collection or not.