org.jboss.marshalling
Interface SerializabilityChecker
public interface SerializabilityChecker
A checker to determine whether an object class should be treated as serializable.
- Author:
- David M. Lloyd
Method Summary |
boolean |
isSerializable(Class<?> clazz)
Determine whether an object class is serializable. |
DEFAULT
static final SerializabilityChecker DEFAULT
- The default serializability checker. Returns
true
for any class which implements Serializable
.
isSerializable
boolean isSerializable(Class<?> clazz)
- Determine whether an object class is serializable.
- Parameters:
clazz
- the object class to test
- Returns:
true
if the object class is serializable, false
otherwise
Copyright © 2011 JBoss, a division of Red Hat, Inc.