- All Implemented Interfaces:
Serializable
,Cloneable
,CoreField
,Field<XMLConversionManager,
,NamespaceResolver> UnionField<XMLConversionManager,
NamespaceResolver>
Subclass of XMLField for fields that are mapped to unions. Maintains a list of schema types instead of just one single schema type. Schema types can be added using the addSchemaType api. XMLConstants has a list of useful constants including a list of QNames for built-in schema types that can be used when adding schema types.
When reading and writing an element that is mapped with an XMLUnionField, a conversion to each of the schema types on the field (in the order they are specified ) is tried until a conversion is successful. The java type to convert to is based on the list of schema type to java conversion pairs specified on the field. These conversion pairs can be modified using the addXMLConversion api.
Code Sample
In this example the age field could be a date or an int.
XMLUnionField field = new XMLUnionField("age/text()");
field.addSchemaType(XMLConstants.DATE_QNAME);
field.addSchemaType(XMLConstants.INT_QNAME)
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.persistence.oxm.XMLField
isTypedTextField, leafElementType, userJavaTypes, userXMLTypes
Fields inherited from class org.eclipse.persistence.internal.helper.DatabaseField
columnDefinition, index, isCreatable, isInsertable, isNullable, isPrimaryKey, isTranslated, isUnique, isUpdatable, keepInRow, length, name, nameForComparisons, NULL_SQL_TYPE, precision, qualifiedName, scale, sqlType, table, type, typeName, useDelimiters, useUpperCaseForComparisons
-
Constructor Summary
ConstructorDescriptionConstructs an XMLUnionFieldXMLUnionField
(String xPath) Constructs an XMLUnionField with the xpath set to the specified xPath -
Method Summary
Modifier and TypeMethodDescriptionvoid
addSchemaType
(QName value) Adds the new type value to the list of typesconvertValueBasedOnSchemaType
(Object value, XMLConversionManager xmlConversionManager, AbstractUnmarshalRecord record) INTERNAL:Class
<?> getJavaClass
(QName qname) Return the class for a given qualified XML Schema type.Class
<?> getJavaClass
(QName qname, ConversionManager conversionManager) INTERNALReturn the first schema type in the list of schema typesgetSchemaTypeForValue
(Object value, CoreAbstractSession session) INTERNAL:Return the list of schema typesprotected QName
getSingleValueToWriteForUnion
(Object value, CoreAbstractSession session) boolean
isSchemaType
(QName schemaType) INTERNALboolean
INTERNAL: returns true since this is a union fieldvoid
setSchemaType
(QName value) Adds the new type value to the list of typesvoid
setSchemaTypes
(ArrayList value) Sets the schema types that this attribute can be mapped to Valid QName schema types can be found on org.eclipse.persistence.oxm.XMLConstantsMethods inherited from class org.eclipse.persistence.oxm.XMLField
addConversion, addJavaConversion, addXMLConversion, equals, getLastXPathFragment, getLeafElementType, getNamespaceResolver, getUserJavaTypesForDeploymentXML, getUserXMLTypesForDeploymentXML, getXMLType, getXMLType, getXPath, getXPathFragment, hashCode, hasLastXPathFragment, initialize, isCDATA, isNestedArray, isRequired, isSelfField, isTypedTextField, removeConversion, removeJavaConversion, removeXMLConversion, setIsCDATA, setIsTypedTextField, setLastXPathFragment, setLeafElementType, setName, setName, setNamespaceResolver, setNestedArray, setRequired, setUserJavaTypesForDeploymentXML, setUserXMLTypesForDeploymentXML, setUsesSingleNode, setXPath, setXPathFragment, usesSingleNode
Methods inherited from class org.eclipse.persistence.internal.helper.DatabaseField
clone, convertClassNamesToClasses, equals, getColumnDefinition, getIndex, getLength, getName, getNameDelimited, getNameForComparisons, getPrecision, getQualifiedName, getQualifiedNameDelimited, getScale, getSqlType, getTable, getTableName, getType, getTypeName, getUseUpperCaseForComparisons, hasTableName, initDDLFields, isCreatable, isInsertable, isNullable, isObjectRelationalDatabaseField, isPrimaryKey, isReadOnly, isTranslated, isUnique, isUpdatable, keepInRow, resetQualifiedName, setColumnDefinition, setCreatable, setIndex, setInsertable, setIsTranslated, setKeepInRow, setLength, setName, setNameForComparisons, setNullable, setPrecision, setPrimaryKey, setScale, setSqlType, setTable, setTableName, setType, setTypeName, setUnique, setUpdatable, setUseDelimiters, shouldUseDelimiters, toString, useUpperCaseForComparisons
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.persistence.internal.core.helper.CoreField
setName, setType
Methods inherited from interface org.eclipse.persistence.internal.oxm.mappings.Field
getLastXPathFragment, getLeafElementType, getName, getNamespaceResolver, getType, getXMLType, getXPath, getXPathFragment, hasLastXPathFragment, initialize, isCDATA, isNestedArray, isRequired, isSelfField, isTypedTextField, setIsCDATA, setIsTypedTextField, setNamespaceResolver, setNestedArray, setRequired, setUsesSingleNode, setXPath, usesSingleNode
-
Constructor Details
-
XMLUnionField
public XMLUnionField()Constructs an XMLUnionField -
XMLUnionField
Constructs an XMLUnionField with the xpath set to the specified xPath- Parameters:
xPath
- The xpath expression for the field
-
-
Method Details
-
getSchemaTypes
Return the list of schema types- Specified by:
getSchemaTypes
in interfaceUnionField<XMLConversionManager,
NamespaceResolver> - Returns:
- the list of types
-
setSchemaTypes
Sets the schema types that this attribute can be mapped to Valid QName schema types can be found on org.eclipse.persistence.oxm.XMLConstants- Parameters:
value
- An ArrayList containing the schema types.- See Also:
-
addSchemaType
Adds the new type value to the list of types- Specified by:
addSchemaType
in interfaceUnionField<XMLConversionManager,
NamespaceResolver> - Parameters:
value
- QName to be added to the list of schema types
-
getSchemaType
Return the first schema type in the list of schema types- Specified by:
getSchemaType
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
getSchemaType
in classXMLField
- Returns:
- the first item in the collection of schema types
-
setSchemaType
Adds the new type value to the list of types- Specified by:
setSchemaType
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
setSchemaType
in classXMLField
- Parameters:
value
- The value to be added to the list of schema types
-
isUnionField
public boolean isUnionField()INTERNAL: returns true since this is a union field- Specified by:
isUnionField
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
isUnionField
in classXMLField
-
getSchemaTypeForValue
Description copied from class:XMLField
INTERNAL:- Specified by:
getSchemaTypeForValue
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
getSchemaTypeForValue
in classXMLField
-
getSingleValueToWriteForUnion
-
convertValueBasedOnSchemaType
public Object convertValueBasedOnSchemaType(Object value, XMLConversionManager xmlConversionManager, AbstractUnmarshalRecord record) INTERNAL:- Specified by:
convertValueBasedOnSchemaType
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
convertValueBasedOnSchemaType
in classXMLField
-
getJavaClass
Return the class for a given qualified XML Schema type. If the class is a primitive the corresponding wrapper class is returned- Overrides:
getJavaClass
in classXMLField
- Parameters:
qname
- The qualified name of the XML Schema type to use as a key in the lookup- Returns:
- The class associated with the specified schema type, if no corresponding match found returns null
-
getJavaClass
INTERNAL- Specified by:
getJavaClass
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
getJavaClass
in classXMLField
- Parameters:
qname
- The qualified name of the XML Schema type to use as a key in the lookup- Returns:
- the class for a given qualified XML Schema type.
- Since:
- EclipseLink 2.6.0
-
isSchemaType
INTERNAL- Specified by:
isSchemaType
in interfaceField<XMLConversionManager,
NamespaceResolver> - Overrides:
isSchemaType
in classXMLField
-