Package | Description |
---|---|
be.SIRAPRISE.client.jsba |
This package contains all the classes and interfaces for the
Java
SIRA_PRISE
Bridging
Architecture, as well as classes that can be used to manipulate catalog objects using the JSBA.
|
Modifier and Type | Method and Description |
---|---|
static <C> C |
DBObjectFactory.getObject(Tuple tuple,
java.lang.Class<C> objectClass)
Get an objects holding the same information as that which is held in this tuple.
|
static <C> C[] |
DBObjectFactory.getObjectArray(TupleContainer c,
java.lang.Class<C> objectClass)
Get an array of objects holding the same information as that which is held in this TupleContainer.
|
static <C> C[] |
DBObjectFactory.getObjectArrayIgnoringMissingSetters(TupleContainer c,
java.lang.Class<C> objectClass)
Get an array of objects holding a (potentially proper) subset of the information held in this TupleContainer.
|
static <C> java.util.Collection<C> |
DBObjectFactory.getObjectCollection(TupleContainer tupleContainer,
java.lang.Class<C> objectClass)
Get a collection of objects holding the same information as that which is held in this TupleContainer.
|
static <C> java.util.Collection<C> |
DBObjectFactory.getObjectCollectionIgnoringMissingSetters(TupleContainer tupleContainer,
java.lang.Class<C> objectClass)
Get a collection of objects holding a (potentially proper) subset of the information held in this TupleContainer.
|
static <C> C |
DBObjectFactory.getObjectIgnoringMissingSetters(Tuple tuple,
java.lang.Class<C> objectClass)
Get an objects holding the same information as that which is held in this tuple.
|
static java.util.Map<java.lang.Class<?>,java.lang.Object> |
DBObjectFactory.getObjects(Tuple tuple,
java.lang.Class<?>[] objectClass)
Get a Map of objects holding the same information as that which is held in this Tuple.
|
static java.util.Collection<java.util.Map<java.lang.Class<?>,java.lang.Object>> |
DBObjectFactory.getObjectsCollection(TupleContainer tupleContainer,
java.lang.Class<?>[] objectClasses)
Get a collection of Maps of objects holding the same information as that which is held in this TupleContainer.
|
static java.lang.reflect.Constructor<?> |
DBObjectFactory.getPublicNoArgConstructor(java.lang.Class<?> objectClass)
Gets the public no-arg constructor from a class
|
<C> C |
Tuple.toObject(java.lang.Class<C> objectClass)
Deprecated.
- replace by be.SIRAPRISE.client.jsba.DBObjectFactory.getObject(...) - e.g. by inlining the calls to this method
|
<C> java.util.Collection<C> |
TupleContainer.toObjectCollection(java.lang.Class<C> objectClass)
Deprecated.
- replace with the replacing getObjectCollection method from the DBObjectFactory class
|
<C> java.util.Collection<C> |
TupleContainer.toObjectCollectionIgnoringMissingSetters(java.lang.Class<C> objectClass)
Deprecated.
- replace with the replacing getObjectCollection method from the DBObjectFactory class
|
java.util.Map<java.lang.Class<?>,java.lang.Object> |
Tuple.toObjects(java.lang.Class<?>[] objectClass)
Deprecated.
- replace by be.SIRAPRISE.client.jsba.DBObjectFactory.getObjects(...) - e.g. by inlining the calls to this method
|
java.util.Map<java.lang.Class<?>,java.lang.Object>[] |
TupleContainer.toObjectsArray(java.lang.Class<?>[] objectClass)
Deprecated.
- replace with the replacing getObjectsCollection method from the DBObjectFactory class, e.g. by inlining your the invocations of this method in your source code
|
java.util.Collection<java.util.Map<java.lang.Class<?>,java.lang.Object>> |
TupleContainer.toObjectsCollection(java.lang.Class<?>[] objectClasses)
Deprecated.
- replace with the replacing getObjectsCollection method from the DBObjectFactory class, e.g. by inlining your the invocations of this method in your source code
|