Class FieldMatcherStrategy
- java.lang.Object
-
- org.powermock.reflect.internal.matcherstrategies.FieldMatcherStrategy
-
- Direct Known Subclasses:
AllFieldsMatcherStrategy
,FieldAnnotationMatcherStrategy
,FieldNameMatcherStrategy
,FieldTypeMatcherStrategy
public abstract class FieldMatcherStrategy extends Object
Class that should be implemented by field matching strategies.
-
-
Constructor Summary
Constructors Constructor Description FieldMatcherStrategy()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
matches(Field field)
A field matcher that checks if a field matches a given criteria.abstract void
notFound(Class<?> type, boolean isInstanceField)
Throws anFieldNotFoundException
if the strategy criteria could not be found.
-
-
-
Method Detail
-
matches
public abstract boolean matches(Field field)
A field matcher that checks if a field matches a given criteria.- Parameters:
field
- The field to check whether it matches the strategy or not.- Returns:
true
if this field matches the strategy,false
otherwise.
-
notFound
public abstract void notFound(Class<?> type, boolean isInstanceField) throws FieldNotFoundException
Throws anFieldNotFoundException
if the strategy criteria could not be found.- Parameters:
type
- The type of the object that was not found.isInstanceField
-true
if the field that was looked after was an instance field orfalse
if it was a static field.- Throws:
FieldNotFoundException
-
-