Package org.hibernate.persister.walking.internal

Examples of org.hibernate.persister.walking.internal.StandardAnyTypeDefinition


      public AnyMappingDefinition toAnyMappingDefinition() {
        final Type type = getType();
        if ( ! type.isAnyType() ) {
          throw new IllegalStateException( "Cannot treat collection index type as ManyToAny" );
        }
        return new StandardAnyTypeDefinition( (AnyType) type, isLazy() || isExtraLazy() );
      }
    };
  }
View Full Code Here


      public AnyMappingDefinition toAnyMappingDefinition() {
        final Type type = getType();
        if ( ! type.isAnyType() ) {
          throw new IllegalStateException( "Cannot treat collection element type as ManyToAny" );
        }
        return new StandardAnyTypeDefinition( (AnyType) type, isLazy() || isExtraLazy() );
      }

      @Override
      public EntityDefinition toEntityDefinition() {
        if ( !getType().isEntityType() ) {
View Full Code Here

TOP

Related Classes of org.hibernate.persister.walking.internal.StandardAnyTypeDefinition

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.