Package net.sf.json.processors
Class JsonValueProcessorMatcher
- java.lang.Object
-
- net.sf.json.processors.JsonValueProcessorMatcher
-
public abstract class JsonValueProcessorMatcher extends java.lang.Object
Base class for finding a matching JsonValueProcessor.
- DEFAULT - matches the target class with equals().
- Author:
- Andres Almiray
-
-
Field Summary
Fields Modifier and Type Field Description static JsonValueProcessorMatcher
DEFAULT
Matches the target with equals()
-
Constructor Summary
Constructors Constructor Description JsonValueProcessorMatcher()
-
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 JsonValueProcessorMatcher DEFAULT
Matches the target with equals()
-
-