Package com.alvazan.orm.api.z8spi.meta

Examples of com.alvazan.orm.api.z8spi.meta.DboColumnIdMeta.convertTypeToString()


    hasValue = true;
  }
  private void setKeyAsStr(byte[] idData) {
    DboColumnIdMeta idMeta = metaClass.getIdField().getMetaIdDbo();
    Object obj = idMeta.convertFromStorage2(idData);
    keyAsStr = idMeta.convertTypeToString(obj);
  }
  public synchronized T getValue() {
    if(!hasValue) {
      //otherwise, we need to create and cache the value
      Tuple<T> tuple =  metaClass.convertIdToProxy(null, session, key.getKey(), cacheLoadCallback);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.