All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.classmapper.Constant Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.classmapper;

/**
 * 
 * @author Francesco Cina
 *
 * 22/mag/2011
 */
public interface Constant {

    // FAKE COLUMN VALUE
    int COLUMN_ZERO_TYPE = 0x80000000;
    
    int  COLUMN_IDENTIFYING_ORDER = -1;
    
    // METADATA CONSTANTS
    String  COLUMN_NAME = "COLUMN_NAME";
    String  COLUMN_DATA_TYPE = "DATA_TYPE";
    String  COLUMN_NULLABLE = "NULLABLE";
    
    String  COLUMN_NAME_FK = "FKCOLUMN_NAME";
    String  COLUMN_NAME_TABLE_FK = "FKTABLE_NAME";
    String  COLUMN_DATA_TYPE_FK = "FKDATA_TYPE";

    String  COLUMN_NAME_PK = "PKCOLUMN_NAME";
    String  COLUMN_NAME_TABLE_PK = "PKTABLE_NAME";
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy