Package org.jboss.marshalling
Interface ClassExternalizerFactory
-
- All Known Implementing Classes:
AnnotationClassExternalizerFactory,ChainingClassExternalizerFactory,MappingClassExternalizerFactory
public interface ClassExternalizerFactoryA factory for locating custom externalizers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExternalizergetExternalizer(Class<?> type)Look up a custom externalizer for a given object class.
-
-
-
Method Detail
-
getExternalizer
Externalizer getExternalizer(Class<?> type)
Look up a custom externalizer for a given object class. If no such externalizer exists, returnsnull.- Parameters:
type- the type to be externalized- Returns:
- the externalizer, or
nullif there is none
-
-