Examples of DboColumnMeta


Examples of com.alvazan.orm.api.z8spi.meta.DboColumnMeta

  public void addMetaField(MetaField<T> field) {
    if(field == null)
      throw new IllegalArgumentException("field cannot be null");
    columnNameToField.put(field.getColumnName(), field);
   
    DboColumnMeta metaCol = field.getMetaDbo();
    if(metaCol.isIndexed())
      indexedColumns.add(field);
   
    if(metaCol.isPartitionedByThisColumn())
      partitionColumns.add(field);
  }
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.