Package org.kordamp.json.util
Class PropertyExclusionClassMatcher
- java.lang.Object
-
- org.kordamp.json.util.PropertyExclusionClassMatcher
-
- Direct Known Subclasses:
PropertyExclusionClassMatcher.DefaultPropertyExclusionClassMatcher
public abstract class PropertyExclusionClassMatcher extends java.lang.Object
Base class for finding a matching property exlucsion.
- DEFAULT - matches the target class with equals().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
PropertyExclusionClassMatcher.DefaultPropertyExclusionClassMatcher
-
Field Summary
Fields Modifier and Type Field Description static PropertyExclusionClassMatcher
DEFAULT
Matches the target with equals()
-
Constructor Summary
Constructors Constructor Description PropertyExclusionClassMatcher()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract java.lang.Object
getMatch(java.lang.Class target, java.util.Set set)
Returns the matching class calculated with the target class and the provided set.
-
-
-
Field Detail
-
DEFAULT
public static final PropertyExclusionClassMatcher DEFAULT
Matches the target with equals()
-
-