- java.lang.Object
-
- com.pervasive.datarush.json.TypeResolutionManager
-
public final class TypeResolutionManager extends Object
Facade that can be used to query the list of classes registered viaTypeResolutionProvider
's. Clients should generally not need to use this class; public only as a matter of implementation.- See Also:
TypeResolutionProvider
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TypeResolutionManager
getInstance()
Returns the singleton instance of this class.List<com.fasterxml.jackson.databind.jsontype.NamedType>
registeredClasses()
Returns the list of registered classes.List<com.fasterxml.jackson.databind.Module>
registeredExtensions()
-
-
-
Method Detail
-
getInstance
public static TypeResolutionManager getInstance()
Returns the singleton instance of this class.- Returns:
- the instance of this class
-
registeredClasses
public List<com.fasterxml.jackson.databind.jsontype.NamedType> registeredClasses()
Returns the list of registered classes.- Returns:
- the list of registered classes.
-
registeredExtensions
public List<com.fasterxml.jackson.databind.Module> registeredExtensions()
-
-