Package freemarker.ext.beans
Interface ClassMemberAccessPolicy
-
public interface ClassMemberAccessPolicy
Returned byMemberAccessPolicy.forClass(Class)
. The idea is thatMemberAccessPolicy.forClass(Class)
is called once per class, and then the methods of the resultingClassMemberAccessPolicy
object will be called for each member of the class. This can speed up the process as the class-specific lookups will be done only once per class, not once per member.- Since:
- 2.3.30
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isConstructorExposed(java.lang.reflect.Constructor<?> constructor)
boolean
isFieldExposed(java.lang.reflect.Field field)
boolean
isMethodExposed(java.lang.reflect.Method method)
-