Uses of Interface
spark.data.io.TypeFactory

Packages that use TypeFactory
spark.data.io The Spark IO system contains classes for persisting and serializing Spark objects. 
 

Uses of TypeFactory in spark.data.io
 

Classes in spark.data.io that implement TypeFactory
 class TypeFactoryReflect
          This type factory uses reflection to create SOs that are subclasses of SOReflect.
 class TypeFactorySimple
          This TypeFactory will always use SObj and SArray for its objects.
 

Methods in spark.data.io that return TypeFactory
 TypeFactory SparkWriter.getTypeFactory()
          This will return the TypeFactory currently being used.
 TypeFactory SparkReader.getTypeFactory()
          This will return the TypeFactory being used.
 TypeFactory SONWriter.getTypeFactory()
           
 TypeFactory SONReader.getTypeFactory()
           
 TypeFactory JSONWriter.getTypeFactory()
           
 TypeFactory JSONReader.getTypeFactory()
           
 

Methods in spark.data.io with parameters of type TypeFactory
 void SparkWriter.setTypeFactory(TypeFactory factory)
          This is the type factory to be used when converting internal Java classes into an external form.
 void SparkReader.setTypeFactory(TypeFactory factory)
          This will set the TypeFactory to be used in constructing objects based on what is read from the external form.
 void SONWriter.setTypeFactory(TypeFactory factory)
           
 void SONReader.setTypeFactory(TypeFactory factory)
           
 void JSONWriter.setTypeFactory(TypeFactory factory)
           
 void JSONReader.setTypeFactory(TypeFactory factory)