Package net.sf.json.processors
Class JsonBeanProcessorMatcher
- java.lang.Object
-
- net.sf.json.processors.JsonBeanProcessorMatcher
-
public abstract class JsonBeanProcessorMatcher extends Object
Base class for finding a matching JsonBeanProcessor.
- DEFAULT - matches the target class with equals().
- Author:
- Andres Almiray
-
-
Field Summary
Fields Modifier and Type Field Description static JsonBeanProcessorMatcherDEFAULTMatches the target with equals()
-
Constructor Summary
Constructors Constructor Description JsonBeanProcessorMatcher()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ObjectgetMatch(Class target, Set set)Returns the matching class calculated with the target class and the provided set.
-
-
-
Field Detail
-
DEFAULT
public static final JsonBeanProcessorMatcher DEFAULT
Matches the target with equals()
-
-