Java org.springframework.data.mapping PersistentEntity fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.mapping PersistentEntity fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.mapping PersistentEntity.

The text is from its open source code.

Implementation

org.springframework.data.mapping.PersistentEntity has the following implementations.
Click this link to see all its implementation.

Method

voiddoWithAssociations(AssociationHandler

handler)
Applies the given AssociationHandler to all Association contained in this PersistentEntity .

voiddoWithAssociations(SimpleAssociationHandler handler)
voiddoWithProperties(PropertyHandler

handler)
Applies the given PropertyHandler to all PersistentProperty s contained in this PersistentEntity .

voiddoWithProperties(SimplePropertyHandler handler)
IdentifierAccessorgetIdentifierAccessor(Object bean)
Returns the IdentifierAccessor for the given bean.
PgetIdProperty()
Returns the id property of the PersistentEntity .
StringgetName()
The entity name including any package prefix.
PgetPersistentProperty(String name)
Obtains a PersistentProperty instance by name.
PgetPersistentProperty(Class annotationType)
Returns the first property equipped with an Annotation of the given type.
PersistentPropertyAccessorgetPropertyAccessor(B bean)
Returns a PersistentPropertyAccessor to access property values of the given bean.
ClassgetType()
Returns the resolved Java type of this entity.
booleanisIdProperty(PersistentProperty property)
Returns whether the given PersistentProperty is the id property of the entity.