Package org.hibernate.collection.internal

Examples of org.hibernate.collection.internal.PersistentMap$Put


  public MapType(TypeFactory.TypeScope typeScope, String role, String propertyRef) {
    super( typeScope, role, propertyRef );
  }

  public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister, Serializable key) {
    return new PersistentMap(session);
  }
View Full Code Here


  public Iterator getElementsIterator(Object collection) {
    return ( (java.util.Map) collection ).values().iterator();
  }

  public PersistentCollection wrap(SessionImplementor session, Object collection) {
    return new PersistentMap( session, (java.util.Map) collection );
  }
View Full Code Here

  public MapType(TypeFactory.TypeScope typeScope, String role, String propertyRef, boolean isEmbeddedInXML) {
    super( typeScope, role, propertyRef, isEmbeddedInXML );
  }

  public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister, Serializable key) {
    return new PersistentMap(session);
  }
View Full Code Here

  public Iterator getElementsIterator(Object collection) {
    return ( (java.util.Map) collection ).values().iterator();
  }

  public PersistentCollection wrap(SessionImplementor session, Object collection) {
    return new PersistentMap( session, (java.util.Map) collection );
  }
View Full Code Here

  public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister, Serializable key) {
    if ( session.getEntityMode()==EntityMode.DOM4J ) {
      return new PersistentMapElementHolder(session, persister, key);
    }
    else {
      return new PersistentMap(session);
    }
  }
View Full Code Here

  public PersistentCollection wrap(SessionImplementor session, Object collection) {
    if ( session.getEntityMode()==EntityMode.DOM4J ) {
      return new PersistentMapElementHolder( session, (Element) collection );
    }
    else {
      return new PersistentMap( session, (java.util.Map) collection );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.collection.internal.PersistentMap$Put

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.