/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.mappings.converters; import java.io.Serializable; import org.eclipse.persistence.core.mappings.converters.CoreConverter; import org.eclipse.persistence.mappings.*; import org.eclipse.persistence.sessions.Session; /** * <p><b>Purpose</b>: Conversion interface to allow conversion between object and data types. * This can be used in any mapping to convert between the object and data types without requiring code * placed in the object model. * TopLink provides several common converters, but the application can also define it own. * * @see DirectToFieldMapping#setConverter(Converter) * @see DirectCollectionMapping#setValueConverter(Converter) * @see ObjectTypeConverter * @see TypeConversionConverter * * @author James Sutherland * @since OracleAS TopLink 10<i>g</i> (10.0.3) */ public interface Converter extends CoreConverter<DatabaseMapping, Session>, Serializable { /** * PUBLIC: * Convert the object's representation of the value to the databases' data representation. * For example this could convert between a Calendar Java type and the sql.Time datatype. */ @Override Object convertObjectValueToDataValue(Object objectValue, Session session); /** * PUBLIC: * Convert the databases' data representation of the value to the object's representation. * For example this could convert between an sql.Time datatype and the Java Calendar type. */ @Override Object convertDataValueToObjectValue(Object dataValue, Session session); /** * PUBLIC: * If the converter converts the value to a mutable value, i.e. * a value that can have its' parts changed without being replaced, * then it must return true. If the value is not mutable, cannot be changed without * replacing the whole value then false must be returned. * This is used within the UnitOfWork to determine how to clone. */ public boolean isMutable(); /** * PUBLIC: * Allow for any initialization. */ @Override void initialize(DatabaseMapping mapping, Session session); }