Package com.avaje.ebeaninternal.server.type.reflect

Examples of com.avaje.ebeaninternal.server.type.reflect.ReflectionBasedTypeBuilder


    int clobType = config == null ? Types.CLOB : config.getDatabasePlatform().getClobDbType();
    int blobType = config == null ? Types.BLOB : config.getDatabasePlatform().getBlobDbType();

    this.checkImmutable = new CheckImmutable(this);
    this.reflectScalarBuilder = new ReflectionBasedTypeBuilder(this);

    this.compoundTypeMap = new ConcurrentHashMap<Class<?>, CtCompoundType<?>>();
    this.typeMap = new ConcurrentHashMap<Class<?>, ScalarType<?>>();
    this.nativeMap = new ConcurrentHashMap<Integer, ScalarType<?>>();
    this.customTypeMap = new ConcurrentHashMap<String, ScalarType<?>>();
View Full Code Here

TOP

Related Classes of com.avaje.ebeaninternal.server.type.reflect.ReflectionBasedTypeBuilder

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.