Uses of Class
org.eclipse.net4j.db.ddl.IDBIndex.Type

Packages that use IDBIndex.Type
org.eclipse.net4j.db.ddl The Net4j DB framework concepts for the abstraction of the SQL data definition language. 
org.eclipse.net4j.db.h2 The Net4j DB Framework support for H2 databases. 
org.eclipse.net4j.spi.db Server service provider interfaces and useful base implementations for the Net4j DB framework. 
org.eclipse.net4j.spi.db.ddl Server service provider interfaces for the Net4j DB framework. 
 

Uses of IDBIndex.Type in org.eclipse.net4j.db.ddl
 

Methods in org.eclipse.net4j.db.ddl that return IDBIndex.Type
 IDBIndex.Type IDBIndex.getType()
           
static IDBIndex.Type IDBIndex.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IDBIndex.Type[] IDBIndex.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eclipse.net4j.db.ddl with parameters of type IDBIndex.Type
 IDBIndex IDBTable.addIndex(IDBIndex.Type type, IDBField... fields)
           
 IDBIndex IDBTable.addIndex(IDBIndex.Type type, String... fieldNames)
           
 IDBIndex IDBTable.addIndex(String name, IDBIndex.Type type, IDBField... fields)
           
 IDBIndex IDBTable.addIndex(String name, IDBIndex.Type type, String... fieldNames)
           
 IDBIndex IDBTable.addIndexEmpty(IDBIndex.Type type)
           
 IDBIndex IDBTable.addIndexEmpty(String name, IDBIndex.Type type)
           
 void IDBIndex.setType(IDBIndex.Type type)
           
 

Uses of IDBIndex.Type in org.eclipse.net4j.db.h2
 

Methods in org.eclipse.net4j.db.h2 with parameters of type IDBIndex.Type
protected  boolean H2Adapter.isPrimaryKeyShadow(Connection connection, IDBTable table, String name, IDBIndex.Type type, IDBField[] fields)
           
 

Uses of IDBIndex.Type in org.eclipse.net4j.spi.db
 

Methods in org.eclipse.net4j.spi.db with parameters of type IDBIndex.Type
protected  void DBAdapter.addIndex(Connection connection, IDBTable table, String name, IDBIndex.Type type, List<DBAdapter.FieldInfo> fieldInfos)
           
protected  boolean DBAdapter.isPrimaryKeyShadow(Connection connection, IDBTable table, String name, IDBIndex.Type type, IDBField[] fields)
           
 

Uses of IDBIndex.Type in org.eclipse.net4j.spi.db.ddl
 

Methods in org.eclipse.net4j.spi.db.ddl with parameters of type IDBIndex.Type
 String InternalDBSchema.createIndexName(IDBTable table, IDBIndex.Type type, IDBField[] fields, int position)
           
 



Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.