Uses of Class
org.d2rq.db.types.DataType.GenericType

Packages that use DataType.GenericType
org.d2rq.db.expr   
org.d2rq.db.types   
org.d2rq.lang   
 

Uses of DataType.GenericType in org.d2rq.db.expr
 

Methods in org.d2rq.db.expr with parameters of type DataType.GenericType
static SQLExpression SQLExpression.create(List<String> literalParts, List<ColumnName> columns, DataType.GenericType dataType)
          Creates a SQL expression that may contain column references.
static Expression SQLExpression.create(String sql, DataType.GenericType dataType)
          Only usable for expressions that don't mention any columns
static Constant Constant.create(String value, DataType.GenericType genericType)
           
 

Constructors in org.d2rq.db.expr with parameters of type DataType.GenericType
BinaryOperator(Expression expr1, Expression expr2, String operator, boolean isCommutative, DataType.GenericType dataType)
           
 

Uses of DataType.GenericType in org.d2rq.db.types
 

Methods in org.d2rq.db.types that return DataType.GenericType
static DataType.GenericType DataType.GenericType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DataType.GenericType[] DataType.GenericType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of DataType.GenericType in org.d2rq.lang
 

Methods in org.d2rq.lang that return types with arguments of type DataType.GenericType
 Map<ColumnName,DataType.GenericType> Database.getColumnTypes()
           
 

Methods in org.d2rq.lang with parameters of type DataType.GenericType
static Expression Microsyntax.parseSQLExpression(String expression, DataType.GenericType dataType)
          Parses a SQL expression, such as "table1.foo > 0", and returns a corresponding Expression.
 

Constructor parameters in org.d2rq.lang with type arguments of type DataType.GenericType
OpBuilder(SQLConnection database, Map<ColumnName,DataType.GenericType> overriddenColumnTypes)