Package freemarker.ext.beans
Interface ClassMemberAccessPolicy
-
public interface ClassMemberAccessPolicyReturned byMemberAccessPolicy.forClass(Class). The idea is thatMemberAccessPolicy.forClass(Class)is called once per class, and then the methods of the resultingClassMemberAccessPolicyobject 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 booleanisConstructorExposed(java.lang.reflect.Constructor<?> constructor)booleanisFieldExposed(java.lang.reflect.Field field)booleanisMethodExposed(java.lang.reflect.Method method)
-