Uses of Class
org.eobjects.metamodel.schema.ColumnType

Packages that use ColumnType
org.eobjects.metamodel Root package for MetaModel 
org.eobjects.metamodel.create API for creating tables 
org.eobjects.metamodel.query API for querying 
org.eobjects.metamodel.schema API for schema structure 
org.eobjects.metamodel.util Utilities and convenient classes 
 

Uses of ColumnType in org.eobjects.metamodel
 

Methods in org.eobjects.metamodel with parameters of type ColumnType
static Column[] MetaModelHelper.getColumnsByType(Column[] columns, ColumnType columnType)
           
 

Uses of ColumnType in org.eobjects.metamodel.create
 

Methods in org.eobjects.metamodel.create with parameters of type ColumnType
 T ColumnBuilder.ofType(ColumnType type)
          Defines the ColumnType of the created column.
 

Uses of ColumnType in org.eobjects.metamodel.query
 

Methods in org.eobjects.metamodel.query that return ColumnType
 ColumnType SelectItem.getExpectedColumnType()
          Tries to infer the ColumnType of this SelectItem.
 ColumnType FunctionType.getExpectedColumnType(ColumnType type)
           
 

Methods in org.eobjects.metamodel.query with parameters of type ColumnType
 ColumnType FunctionType.getExpectedColumnType(ColumnType type)
           
 

Uses of ColumnType in org.eobjects.metamodel.schema
 

Methods in org.eobjects.metamodel.schema that return ColumnType
static ColumnType ColumnType.convertColumnType(Class<?> cls)
          Finds the ColumnType enum corresponding to the incoming Java class.
static ColumnType ColumnType.convertColumnType(int jdbcType)
          Finds the ColumnType enum corresponding to the incoming JDBC type-constant
 ColumnType MutableColumn.getType()
           
 ColumnType ImmutableColumn.getType()
           
 ColumnType Column.getType()
          Gets the type of the column
static ColumnType ColumnType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ColumnType[] ColumnType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eobjects.metamodel.schema with parameters of type ColumnType
 Column[] Table.getColumnsOfType(ColumnType columnType)
          Gets the columns of this table that conforms to a specified ColumnType.
 Column[] AbstractTable.getColumnsOfType(ColumnType columnType)
           
 MutableColumn MutableColumn.setType(ColumnType type)
           
 

Constructors in org.eobjects.metamodel.schema with parameters of type ColumnType
ImmutableColumn(String name, ColumnType type, Table table, int columnNumber, Integer columnSize, String nativeType, Boolean nullable, String remarks, boolean indexed, String quote, boolean primaryKey)
          Constructs a new ImmutableColumn.
MutableColumn(String name, ColumnType type)
           
MutableColumn(String name, ColumnType type, Table table, int columnNumber, Boolean nullable)
           
MutableColumn(String name, ColumnType type, Table table, int columnNumber, Integer columnSize, String nativeType, Boolean nullable, String remarks, boolean indexed, String quote)
           
 

Uses of ColumnType in org.eobjects.metamodel.util
 

Methods in org.eobjects.metamodel.util that return ColumnType
 ColumnType[] SimpleTableDef.getColumnTypes()
          Gets the types of the columns in the table
 

Methods in org.eobjects.metamodel.util with parameters of type ColumnType
static String FormatHelper.formatSqlBoolean(ColumnType columnType, boolean b)
           
static String FormatHelper.formatSqlTime(ColumnType columnType, Date date)
          Formats a date according to a specific column type (DATE, TIME or TIMESTAMP)
static String FormatHelper.formatSqlTime(ColumnType columnType, Date date, boolean typeCastDeclaration)
          Formats a date according to a specific column type (DATE, TIME or TIMESTAMP).
static String FormatHelper.formatSqlTime(ColumnType columnType, Date date, boolean typeCastDeclaration, String beforeDateLiteral, String afterDateLiteral)
          Formats a date according to a specific column type (DATE, TIME or TIMESTAMP)
static String FormatHelper.formatSqlValue(ColumnType columnType, Object value)
           
static Date FormatHelper.parseSqlTime(ColumnType columnType, String value)
          Parses a SQL string representation of a time based value
 

Constructors in org.eobjects.metamodel.util with parameters of type ColumnType
SimpleTableDef(String name, String[] columnNames, ColumnType[] columnTypes)
          Constructs a SimpleTableDef.
 



Copyright © 2007-2013. All Rights Reserved.