org.hibernate.EntityMode.toString()

Here are the examples of the java api org.hibernate.EntityMode.toString() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : CollectionKey.java
with GNU General Public License v2.0
from lamsfoundation

/**
 * Custom serialization routine used during serialization of a
 * Session/PersistenceContext for increased performance.
 *
 * @param oos The stream to which we should write the serial data.
 *
 * @throws java.io.IOException
 */
public void serialize(ObjectOutputStream oos) throws IOException {
    oos.writeObject(role);
    oos.writeObject(key);
    oos.writeObject(keyType);
    oos.writeObject(enreplacedyMode.toString());
}