You probably have already looked into the following DatabaseMetaData methods, but in case you overlooked them:
getExportedKeys(
String catalog, String schema, String table)
getImportedKeys(String catalog, String schema, String table)
getPrimaryKeys(String catalog, String schema, String table)
The above are only for primary key/foreign key constraints. I haven't come accross a solution for non-key constraints.
jamie