Uses of Class
org.hibernate.type.SerializationException
-
Packages that use SerializationException Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.cfg This package defines APIs for configuring Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.internal.util Internal utility classes -
-
Uses of SerializationException in org.hibernate.boot
Methods in org.hibernate.boot that throw SerializationException Modifier and Type Method Description MetadataSources
MetadataSources. addCacheableFileStrictly(File file)
INTENDED FOR TESTSUITE USE ONLY!MetadataSources
MetadataSources. addCacheableFileStrictly(File file, File cacheDir)
INTENDED FOR TESTSUITE USE ONLY! -
Uses of SerializationException in org.hibernate.cfg
Methods in org.hibernate.cfg that throw SerializationException Modifier and Type Method Description Configuration
Configuration. addCacheableFileStrictly(File xmlFile)
INTENDED FOR TESTSUITE USE ONLY! -
Uses of SerializationException in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type SerializationException Modifier and Type Method Description void
CoreMessageLogger. unableToDeserializeCache(String path, SerializationException error)
-
Uses of SerializationException in org.hibernate.internal.util
Methods in org.hibernate.internal.util that throw SerializationException Modifier and Type Method Description static Object
SerializationHelper. clone(Serializable object)
Deep clone an object using serialization.static Object
SerializationHelper. deserialize(byte[] objectData)
Deserializes an object from an array of bytes using the Thread Context ClassLoader (TCCL).static Object
SerializationHelper. deserialize(byte[] objectData, ClassLoader loader)
Deserializes an object from an array of bytes.static <T> T
SerializationHelper. deserialize(InputStream inputStream)
Deserializes an object from the given stream using the Thread Context ClassLoader (TCCL).static Object
SerializationHelper. deserialize(InputStream inputStream, ClassLoader loader)
Deserializes an object from the given stream using the Thread Context ClassLoader (TCCL).static <T> T
SerializationHelper. doDeserialize(InputStream inputStream, ClassLoader loader, ClassLoader fallbackLoader1, ClassLoader fallbackLoader2)
static byte[]
SerializationHelper. serialize(Serializable obj)
Serializes an object to a byte array for storage or externalization.static void
SerializationHelper. serialize(Serializable obj, OutputStream outputStream)
Serializes an object to the given stream.
-