Uses of Class
net.ontopia.persistence.proxy.ClassDescriptor
-
Packages that use ClassDescriptor Package Description net.ontopia.persistence.proxy An object-relational mapping framework. -
-
Uses of ClassDescriptor in net.ontopia.persistence.proxy
Fields in net.ontopia.persistence.proxy declared as ClassDescriptor Modifier and Type Field Description protected ClassDescriptor
ClassInfo. cdesc
protected ClassDescriptor
FieldDescriptor. cdesc
Fields in net.ontopia.persistence.proxy with type parameters of type ClassDescriptor Modifier and Type Field Description protected Map<Class<?>,ClassDescriptor>
ObjectRelationalMapping. cdescs
Methods in net.ontopia.persistence.proxy that return ClassDescriptor Modifier and Type Method Description ClassDescriptor
FieldDescriptor. getClassDescriptor()
INTERNAL: Gets the class descriptor that the field descriptor belongs to.ClassDescriptor[]
ObjectRelationalMapping. getClassDescriptors()
INTERNAL: Gets all the class descriptors in the mapping.ClassDescriptor
ObjectRelationalMapping. getDescriptorByClass(Class<?> type)
INTERNAL: Gets the class descriptor by object type.ClassDescriptor
FieldDescriptor. getValueClassDescriptor()
INTERNAL: Gets the class descriptor of the field value class.protected ClassDescriptor[]
ObjectRelationalMapping. toClassDescriptorArray(Collection<ClassDescriptor> cdescs)
INTERNAL: Utility method that converts a collection of class descriptors to an array of class descriptors.Methods in net.ontopia.persistence.proxy with parameters of type ClassDescriptor Modifier and Type Method Description void
ObjectRelationalMapping. addClass(ClassDescriptor cdesc)
INTERNAL: Adds the class descriptor to the mapping.Method parameters in net.ontopia.persistence.proxy with type arguments of type ClassDescriptor Modifier and Type Method Description protected ClassDescriptor[]
ObjectRelationalMapping. toClassDescriptorArray(Collection<ClassDescriptor> cdescs)
INTERNAL: Utility method that converts a collection of class descriptors to an array of class descriptors.Constructors in net.ontopia.persistence.proxy with parameters of type ClassDescriptor Constructor Description ClassInfo(RDBMSMapping mapping, ClassDescriptor cdesc)
FieldDescriptor(String name, ClassDescriptor cdesc)
-