Class MapFactory
java.lang.Object
com.cedarsoftware.util.io.factory.MapFactory
- All Implemented Interfaces:
JsonReader.ClassFactory
Deprecated.
Use to create new instances of Map interfaces (needed for empty Maps). Used
internally to handle Map, SortedMap when they are within parameterized types.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionnewInstance(Class<?> c, JsonObject jObj, ReaderContext context) Deprecated.Implement this method to return a new instance of the passed in Class.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.cedarsoftware.util.io.JsonReader.ClassFactory
gatherRemainingValues, isObjectFinal, newInstance
-
Constructor Details
-
MapFactory
public MapFactory()Deprecated.
-
-
Method Details
-
newInstance
Deprecated.Description copied from interface:JsonReader.ClassFactoryImplement this method to return a new instance of the passed in Class. Use the passed in JsonObject to supply values to the construction of the object.- Specified by:
newInstancein interfaceJsonReader.ClassFactory- Parameters:
c- Map interface that was requested for instantiation.jObj- JsonObjectcontext- ReaderContext- Returns:
- a concrete Map type.
-