public class XMLListConverter extends java.lang.Object implements Converter
Purpose: Provides an implementation of Converter that can be used to convert a collection of Objects into a space separated list of Strings and back. Used with XMLCompositeDirectCollectionMapping to implement the behaviour of the XmlList annotation
| Constructor and Description | 
|---|
XMLListConverter()  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Object | 
convertDataValueToObjectValue(java.lang.Object dataValue,
                             Session session)
PUBLIC:
 Convert the databases' data representation of the value to the object's representation. 
 | 
java.lang.Object | 
convertObjectValueToDataValue(java.lang.Object objectValue,
                             Session session)
PUBLIC:
 Convert the object's representation of the value to the databases' data representation. 
 | 
java.lang.Class | 
getObjectClass()
Get the Class of the elements of this collection's "sub-collection". 
 | 
java.lang.String | 
getObjectClassName()
Get the Class name of the elements of this collection's "sub-collection". 
 | 
void | 
initialize(DatabaseMapping mapping,
          Session session)
PUBLIC:
 Allow for any initialization. 
 | 
boolean | 
isMutable()
PUBLIC:
 If the converter converts the value to a mutable value, i.e. 
 | 
void | 
setObjectClass(java.lang.Class aClass)
Set the Class of the elements of this collection's "sub-collection". 
 | 
void | 
setObjectClassName(java.lang.String aClassName)
Set the Class name of the elements of this collection's "sub-collection". 
 | 
public java.lang.Object convertDataValueToObjectValue(java.lang.Object dataValue,
                                                      Session session)
ConverterconvertDataValueToObjectValue in interface CoreConverter<DatabaseMapping,Session>convertDataValueToObjectValue in interface Converterpublic java.lang.Object convertObjectValueToDataValue(java.lang.Object objectValue,
                                                      Session session)
ConverterconvertObjectValueToDataValue in interface CoreConverter<DatabaseMapping,Session>convertObjectValueToDataValue in interface Converterpublic void initialize(DatabaseMapping mapping, Session session)
Converterinitialize in interface CoreConverter<DatabaseMapping,Session>initialize in interface Converterpublic boolean isMutable()
Converterpublic java.lang.String getObjectClassName()
public void setObjectClassName(java.lang.String aClassName)
aClassName - the name of the Class of the elements of this collection's "sub-collection"public java.lang.Class getObjectClass()
public void setObjectClass(java.lang.Class aClass)
aClass - the Class of the elements of this collection's "sub-collection"