Interface TypeProfileFactory.MemberPolicy
- Enclosing class:
TypeProfileFactory
public static interface TypeProfileFactory.MemberPolicy
An interface for figuring out whether to ignore certain fields or methods
on an object that a profile is being generated for (if they are already
going to pass testing for includable fields).
- Author:
- Matthew Tropiano
-
Method Summary
Modifier and TypeMethodDescriptionGets an alias name for the provided field.Gets an alias name for the provided method.booleanChecks if a field is ignored by the profile generator.booleanChecks if a method is ignored by the profile generator.
-
Method Details
-
isIgnored
Checks if a field is ignored by the profile generator.- Parameters:
field- the field to test.- Returns:
- true if so, false if not.
-
isIgnored
Checks if a method is ignored by the profile generator.- Parameters:
method- the method to test.- Returns:
- true if so, false if not.
-
getAlias
-
getAlias
-