Uses of Interface
flexjson.ObjectFactory

Packages that use ObjectFactory
flexjson   
flexjson.factories   
flexjson.transformer   
 

Uses of ObjectFactory in flexjson
 

Fields in flexjson with type parameters of type ObjectFactory
protected  DeferredInstantiation<? extends ObjectFactory> BeanProperty.objectFactory
           
 

Methods in flexjson that return ObjectFactory
 ObjectFactory BeanProperty.getObjectFactory()
           
 

Methods in flexjson with parameters of type ObjectFactory
 T JSONDeserializer.deserialize(Reader input, ObjectFactory factory)
          Same as JSONDeserializer.deserialize(String, ObjectFactory), but uses an instance of java.io.Reader as json input.
 T JSONDeserializer.deserialize(Reader input, String path, ObjectFactory factory)
          Same as JSONDeserializer.deserialize(String, ObjectFactory), it starts binding into the instance of the given Class at the given path.
 T JSONDeserializer.deserialize(String input, ObjectFactory factory)
          Deserialize the given json input, and use the given ObjectFactory to create the initial object to deserialize into.
 T JSONDeserializer.deserialize(String input, String path, ObjectFactory factory)
          Same as JSONDeserializer.deserialize(String, ObjectFactory), it starts binding into the instance of the given Class at the given path.
 ObjectBinder ObjectBinder.use(Class clazz, ObjectFactory factory)
           
 JSONDeserializer<T> JSONDeserializer.use(Class clazz, ObjectFactory factory)
           
 JSONDeserializer<T> JSONDeserializer.use(ObjectFactory factory, String... paths)
           
 ObjectBinder ObjectBinder.use(Path path, ObjectFactory factory)
           
 JSONDeserializer<T> JSONDeserializer.use(String path, ObjectFactory factory)
           
 

Uses of ObjectFactory in flexjson.factories
 

Classes in flexjson.factories that implement ObjectFactory
 class ArrayObjectFactory
           
 class BeanObjectFactory
           
 class BigDecimalFactory
           
 class BigIntegerFactory
           
 class BooleanAsStringObjectFactory
          Alternate version for deserializing into a Boolean from known String values.
 class BooleanObjectFactory
           
 class ByteObjectFactory
           
 class CharacterObjectFactory
           
 class ClassLocatorObjectFactory
           
 class DateObjectFactory
          DateObjectFactory instantiates java.lang.Date using a list of known java.text.DateFormat instances for json string types, or milliseconds from Jan 1, 1970 GMT for json numeric types.
 class DoubleObjectFactory
           
 class EnumObjectFactory
           
 class ExistingObjectFactory
           
 class FloatObjectFactory
           
 class IntegerObjectFactory
           
 class JsonNumberObjectFactory
          This class exists because it possible we don't have any type information to guide us to what object we should instantiate when dealing with type-less collections.
 class ListObjectFactory
           
 class LongObjectFactory
           
 class MapObjectFactory
           
 class SetObjectFactory
           
 class ShortObjectFactory
           
 class SortedSetObjectFactory
           
 class StringObjectFactory
           
 

Uses of ObjectFactory in flexjson.transformer
 

Classes in flexjson.transformer that implement ObjectFactory
 class DateTransformer
          User: brandongoodin Date: Dec 12, 2007 Time: 11:20:39 PM
 



Copyright © 2014. All Rights Reserved.