Package | Description |
---|---|
oracle.javatools.db |
Contains a metadata API for describing database objects, and retrieving them from a provider of database objects - for example a database.
|
oracle.javatools.db.validators |
Contains classes that provide the capability to validate DBObjects in a DBObjectProvider.
|
Modifier and Type | Method and Description |
---|---|
void |
DBObjectProvider.validateUniqueName(DBObject object, DBObject contextObject)
Validates that a name is not used within a context DBObject, and throws NameInUseException if it is.
|
void |
AbstractDBObjectProvider.validateUniqueName(DBObject object, DBObject contextObject) |
void |
DBObjectProvider.validateUniqueName(java.lang.String type, DBObject contextObject, java.lang.String name)
Validates that a name is not used within a context DBObject, and throws NameInUseException if it is.
|
void |
AbstractDBObjectProvider.validateUniqueName(java.lang.String type, DBObject contextObject, java.lang.String name)
Validates that a name is not used within a context DBObject, and throws NameInUseException if it is.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DBObjectValidator.validateNameInUse(T object)
Validates whether the given name is already in use.
|