|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use PObjConstraintException | |
|---|---|
| de.mguennewig.pobjects | The package de.mguennewig.pobjects provides an abstraction
layer on top of a set of database tables by which table rows can be
accessed transparently as Java objects. |
| de.mguennewig.pobjects.event | The package provides classes to listen to database changes performed over the PObject library. |
| de.mguennewig.pobjects.jdbc | This package contains Container implementations that
use a JDBC connection. |
| de.mguennewig.pobjects.memdb | This package contains a simple non-persistent Container
implementation that operates only in memory. |
| de.mguennewig.pobjects.metadata | This package contains the metadata classes used by the PObject library. |
| de.mguennewig.pobjsearch | This package contains the PObjSearch framework that is based on the PObjForm library. |
| Uses of PObjConstraintException in de.mguennewig.pobjects |
|---|
| Methods in de.mguennewig.pobjects with parameters of type PObjConstraintException | |
|---|---|
void |
PObjConstraintException.add(PObjConstraintException e)
Adds all entries of the exception e to this instance. |
| Methods in de.mguennewig.pobjects that throw PObjConstraintException | |
|---|---|
void |
PObjSet.add(java.lang.Object... key)
Add the given arguments as an element to the set. |
T |
PObjNestedSet.add(T parent,
T node)
|
boolean |
PObjSet.addIfAbsent(java.lang.Object... key)
Add the given arguments as an element to the set if no such already exists. |
void |
PObject.checkConstraints()
Tests whether the current in memory state violates any Constraints. |
void |
PObject.checkConstraints(int fieldCheck)
Tests whether the current in memory state violates any Constraints. |
int |
AbstractPObjJoin.clear()
Removes all of the elements from this stack. |
int |
Container.deleteAll(java.lang.Class<? extends Record> tableClass)
Deletes all entries within the specified table. |
int |
AbstractContainer.deleteAll(java.lang.Class<? extends Record> tableClass)
Deletes all entries within the specified table. |
int |
Container.deleteAll(ClassDecl te)
Deletes all entries within the specified table. |
int |
Container.deleteAll(ClassDecl cl,
Column fk,
java.lang.Object value)
Deletes all entries within the specified table whose foreign key fk equals the given value. |
void |
Container.deleteObject(PObject obj)
Deletes the given persistent object from the database. |
boolean |
Container.deleteRecord(Record obj)
|
java.lang.String |
Container.insertObject(PObject obj)
Inserts the given object into the database. |
boolean |
Container.insertRecord(Record obj)
|
T |
PObjStack.pop()
Removes the element at the top of this stack and returns that as the value of this function. |
void |
PObjStack.push(java.lang.Object... value)
Pushes the values value as one new element onto the top of
this stack. |
void |
PObjStack.push(T obj)
Pushes the element obj onto the top of this stack. |
T |
PObjMap.put(java.lang.Object... keyValues)
Add the given arguments as an element to the map. |
T |
PObjMap.putIfAbsent(java.lang.Object... keyValues)
If the specified key is not already associated with a value, associate it with the given value. |
boolean |
PObjSet.remove(java.lang.Object... key)
Remove the given arguments as an element from the set. |
boolean |
PObjMap.remove(java.lang.Object... key)
Remove the given arguments as an element from the map. |
boolean |
PObjSet.remove(T obj)
Remove the give record obj as an element from the
set. |
boolean |
PObjNestedSet.remove(T obj)
Remove the give record obj as an element from the
nested set. |
boolean |
PObjMap.remove(T obj)
Remove the give record obj as an element from the
map. |
void |
PObject.store()
Saves the current in memory state in the RDBMS. |
void |
PObject.store(int fieldCheck)
Saves the current in memory state in the RDBMS. |
void |
Container.storeAll()
Stores all changed objects belonging to this container. |
void |
AbstractContainer.storeAll()
Stores all changed objects belonging to this container. |
void |
Container.updateObject(PObject obj)
Updates the given persistent object in the database. |
| Uses of PObjConstraintException in de.mguennewig.pobjects.event |
|---|
| Methods in de.mguennewig.pobjects.event that throw PObjConstraintException | |
|---|---|
int |
ContainerWrapper.deleteAll(ClassDecl cdecl)
Deletes all entries within the specified table. |
int |
ContainerWrapper.deleteAll(ClassDecl cl,
Column fk,
java.lang.Object value)
Deletes all entries within the specified table whose foreign key fk equals the given value. |
void |
ContainerWrapper.deleteObject(PObject obj)
Deletes the given persistent object from the database. |
boolean |
ContainerWrapper.deleteRecord(Record obj)
|
java.lang.String |
ContainerWrapper.insertObject(PObject obj)
Inserts the given object into the database. |
boolean |
ContainerWrapper.insertRecord(Record obj)
|
void |
ContainerWrapper.updateObject(PObject obj)
Updates the given persistent object in the database. |
| Uses of PObjConstraintException in de.mguennewig.pobjects.jdbc |
|---|
| Methods in de.mguennewig.pobjects.jdbc that throw PObjConstraintException | |
|---|---|
int |
JdbcContainer.deleteAll(ClassDecl te)
Deletes all entries within the specified table. |
int |
JdbcContainer.deleteAll(ClassDecl cl,
Column fk,
java.lang.Object value)
Deletes all entries within the specified table whose foreign key fk equals the given value. |
void |
JdbcContainer.deleteObject(PObject obj)
Deletes the given persistent object from the database. |
boolean |
JdbcContainer.deleteRecord(Record obj)
|
java.lang.String |
SqlServerContainer.insertObject(PObject obj)
Inserts the given object into the database. |
java.lang.String |
SQLiteContainer.insertObject(PObject obj)
Inserts the given object into the database. |
java.lang.String |
PostgreSQLContainer.insertObject(PObject obj)
Inserts the given object into the database. |
java.lang.String |
OracleContainer.insertObject(PObject obj)
Inserts the given object into the database. |
java.lang.String |
MySQLContainer.insertObject(PObject obj)
Inserts the given object into the database. |
boolean |
JdbcContainer.insertRecord(Record obj)
|
void |
JdbcContainer.updateObject(PObject obj)
Updates the given persistent object in the database. |
| Uses of PObjConstraintException in de.mguennewig.pobjects.memdb |
|---|
| Methods in de.mguennewig.pobjects.memdb that throw PObjConstraintException | |
|---|---|
int |
MemoryContainer.deleteAll(ClassDecl te)
Deletes all entries within the specified table. |
int |
MemoryContainer.deleteAll(ClassDecl te,
Column fk,
java.lang.Object value)
Deletes all entries within the specified table whose foreign key fk equals the given value. |
void |
MemoryContainer.deleteObject(PObject obj)
Deletes the given persistent object from the database. |
boolean |
MemoryContainer.deleteRecord(Record obj)
|
java.lang.String |
MemoryContainer.insertObject(PObject obj)
Inserts the given object into the database. |
boolean |
MemoryContainer.insertRecord(Record obj)
|
void |
MemoryContainer.updateObject(PObject obj)
Updates the given persistent object in the database. |
| Uses of PObjConstraintException in de.mguennewig.pobjects.metadata |
|---|
| Methods in de.mguennewig.pobjects.metadata that throw PObjConstraintException | |
|---|---|
void |
UniqueConstraint.check(Record obj)
Checks whether the constraint is fulfilled for the given object. |
void |
PrimaryKeyConstraint.check(Record obj)
Checks whether the constraint is fulfilled for the given Record. |
void |
ForeignKeyConstraint.check(Record obj)
Checks whether the constraint is fulfilled for the given object. |
abstract void |
Constraint.check(Record obj)
Checks whether the constraint is fulfilled for the given object. |
void |
CheckConstraint.check(Record obj)
Checks whether the constraint is fulfilled for the given object. |
void |
TypeRef.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
Type.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
TimeStampType.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
StringType.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
ScalarType.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
NumericType.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
void |
Int32Type.checkConstraints(Record rec,
Column column)
Checks all constraints imposed on values of this type. |
| Uses of PObjConstraintException in de.mguennewig.pobjsearch |
|---|
| Methods in de.mguennewig.pobjsearch that throw PObjConstraintException | |
|---|---|
abstract void |
SearchColumn.setValue(Record[] row,
java.lang.Object value)
Sets the "raw" value for this column in the given row. |
void |
DefaultSearchColumn.setValue(Record[] row,
java.lang.Object value)
Sets the "raw" value for this column in the given row. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||