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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
AfindAnnotation(Class annotationType)
Looks up the annotation of the given type on the PersistentProperty .
ClassgetActualType()
Returns the actual type of the property.
FieldgetField()
MethodgetGetter()
Returns the getter method to access the property value if available.
StringgetName()
The name of the property
PersistentEntitygetOwner()
Returns the PersistentEntity owning the current PersistentProperty .
MethodgetSetter()
Returns the setter method to set a property value.
ClassgetType()
The type of the property
TypeInformationgetTypeInformation()
Returns the TypeInformation of the property.
booleanisAnnotationPresent(Class annotationType)
Returns whether the PersistentProperty has an annotation of the given type.
booleanisArray()
Returns whether the property is an array.
booleanisAssociation()
Returns whether the property is an Association .
booleanisCollectionLike()
Returns whether the property is a Collection , Iterable or an array.
booleanisEntity()
Returns whether the type of the PersistentProperty is actually to be regarded as PersistentEntity in turn.
booleanisIdProperty()
Returns whether the property is a potential identifier property of the owning PersistentEntity .
booleanisMap()
Returns whether the property is a Map .
booleanisVersionProperty()
Returns whether the current property is a potential version property of the owning PersistentEntity .
booleanisWritable()
Returns whether the current property is writable, i.e.
booleanusePropertyAccess()
Returns whether property access shall be used for reading the property value.