Package net.razorvine.pickle
Interface IObjectConstructor
-
- All Known Implementing Classes:
AnyClassConstructor,ArrayConstructor,ByteArrayConstructor,ClassDictConstructor,DateTimeConstructor,ExceptionConstructor,OperatorAttrGetterForCalendarTz,Reconstructor,SetConstructor,TimeZoneConstructor
public interface IObjectConstructorInterface for Object Constructors that are used by the unpickler to create instances of non-primitive or custom classes.- Author:
- Irmen de Jong (irmen@razorvine.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectconstruct(java.lang.Object[] args)Create an object.
-
-
-
Method Detail
-
construct
java.lang.Object construct(java.lang.Object[] args) throws PickleExceptionCreate an object. Use the given args as parameters for the constructor.- Throws:
PickleException
-
-