Package jodd.db.oom.meta

Examples of jodd.db.oom.meta.DbMapTo


  /**
   * Resolves mapped types from {@link jodd.db.oom.meta.DbMapTo} annotation.
   */
  public static Class[] resolveMappedTypes(Class type) {
    DbMapTo dbMapTo = (DbMapTo) type.getAnnotation(DbMapTo.class);
    if (dbMapTo == null) {
      return null;
    }
    return dbMapTo.value();
  }
View Full Code Here


  /**
   * Resolves mapped types from {@link jodd.db.oom.meta.DbMapTo} annotation.
   */
  public static Class[] resolveMappedTypes(Class type) {
    DbMapTo dbMapTo = (DbMapTo) type.getAnnotation(DbMapTo.class);
    if (dbMapTo == null) {
      return null;
    }
    return dbMapTo.value();
  }
View Full Code Here

TOP

Related Classes of jodd.db.oom.meta.DbMapTo

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.