|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sleepycat.persist.model.EntityModel com.sleepycat.persist.model.AnnotationModel
public class AnnotationModel
The default annotation-based entity model. An AnnotationModel
is based on annotations that are specified for entity classes and their key
fields.
AnnotationModel
objects are thread-safe. Multiple threads may
safely call the methods of a shared AnnotationModel
object.
The set of persistent classes in the annotation model is the set of all
classes with the Persistent
or Entity
annotation.
The annotations used to define persistent classes are: Entity
,
Persistent
, PrimaryKey
, SecondaryKey
and KeyField
. A good starting point is Entity
.
Constructor Summary | |
---|---|
AnnotationModel()
Constructs a model for annotated entity classes. |
Method Summary | |
---|---|
ClassMetadata |
getClassMetadata(String className)
Returns the metadata for a given persistent class name, including proxy classes and entity classes. |
EntityMetadata |
getEntityMetadata(String className)
Returns the metadata for a given entity class name. |
Set<String> |
getKnownClasses()
Returns the names of all known persistent classes. |
Set<String> |
getKnownSpecialClasses()
Returns the names of all known persistent enum and array classes that may be used to store persistent data. |
Methods inherited from class com.sleepycat.persist.model.EntityModel |
---|
classForName, convertRawObject, getAllRawTypes, getAllRawTypeVersions, getRawType, getRawTypeVersion, isOpen, registerClass, resolveClass, setCatalog |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AnnotationModel()
Method Detail |
---|
public Set<String> getKnownClasses()
EntityModel
getKnownClasses
in class EntityModel
public Set<String> getKnownSpecialClasses()
EntityModel
EntityModel.getKnownClasses()
, which does not return enum and array classes
because they have no metadata.
getKnownSpecialClasses
in class EntityModel
public EntityMetadata getEntityMetadata(String className)
EntityModel
getEntityMetadata
in class EntityModel
public ClassMetadata getClassMetadata(String className)
EntityModel
getClassMetadata
in class EntityModel
|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |