Uses of Class
be.SIRAPRISE.client.jsba.ClassDoesNotImplementDBObjectException

Packages that use ClassDoesNotImplementDBObjectException
be.SIRAPRISE.client   
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. 
 

Uses of ClassDoesNotImplementDBObjectException in be.SIRAPRISE.client
 

Methods in be.SIRAPRISE.client that throw ClassDoesNotImplementDBObjectException
<C> C
AbstractTuple.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> C[]
TupleContainer.toObjectArray(java.lang.Class<C> objectClass)
          Deprecated. - Use the replacing DBObjectFactory method instead.
<C> C[]
AbstractTupleContainer.toObjectArray(java.lang.Class<C> objectClass)
           
<C> C[]
TupleContainer.toObjectArrayIgnoringMissingSetters(java.lang.Class<C> objectClass)
          Deprecated. - Use the replacing DBObjectFactory method instead.
<C> C[]
AbstractTupleContainer.toObjectArrayIgnoringMissingSetters(java.lang.Class<C> objectClass)
           
<C> java.util.Collection<C>
TupleContainer.toObjectCollection(java.lang.Class<C> objectClass)
          Get a collection of objects holding the same information as that which is held in this TupleContainer.
<C> java.util.Collection<C>
AbstractTupleContainer.toObjectCollection(java.lang.Class<C> objectClass)
           
<C> java.util.Collection<C>
TupleContainer.toObjectCollectionIgnoringMissingSetters(java.lang.Class<C> objectClass)
          Get a collection of objects holding a (potentially proper) subset of the information held in this TupleContainer.
<C> java.util.Collection<C>
AbstractTupleContainer.toObjectCollectionIgnoringMissingSetters(java.lang.Class<C> objectClass)
           
 java.util.Map<java.lang.Class<?>,java.lang.Object> AbstractTuple.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)
          Get an array of Maps of objects holding the same information as that which is held in this TupleContainer.
 java.util.Map<java.lang.Class<?>,java.lang.Object>[] AbstractTupleContainer.toObjectsArray(java.lang.Class<?>[] objectClass)
           
 java.util.Collection<java.util.Map<java.lang.Class<?>,java.lang.Object>> TupleContainer.toObjectsCollection(java.lang.Class<?>[] objectClass)
          Get a collection of Maps of objects holding the same information as that which is held in this TupleContainer.
 java.util.Collection<java.util.Map<java.lang.Class<?>,java.lang.Object>> AbstractTupleContainer.toObjectsCollection(java.lang.Class<?>[] objectClass)
           
 

Uses of ClassDoesNotImplementDBObjectException in be.SIRAPRISE.client.jsba
 

Methods in be.SIRAPRISE.client.jsba that throw ClassDoesNotImplementDBObjectException
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(AbstractTupleContainer 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(AbstractTupleContainer 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(AbstractTupleContainer 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> 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.lang.reflect.Constructor<?> DBObjectFactory.getPublicNoArgConstructor(java.lang.Class<?> objectClass)
          Gets the public no-arg constructor from a class
static java.lang.reflect.Constructor<?> DBObjectFactory.getPublicTupleConstructor(java.lang.Class<?> objectClass)
          Gets the 'Tuple' constructor from a class