Interface AttributeAnalysis
-
public interface AttributeAnalysis
Results of analyzing an attribute in terms of handling update operations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AttributeMapping
getAttribute()
The attribute analyzed hereboolean
includeInLocking()
Whether the attribute should be included in optimistic locking (where-clause restriction)boolean
includeInSet()
Whether the attribute should be included in setting the values on the database.boolean
isDirty()
Whether the attribute is considered dirtydefault boolean
isSkipped()
Whether the attribute be skipped completely.
-
-
-
Method Detail
-
getAttribute
AttributeMapping getAttribute()
The attribute analyzed here
-
includeInSet
boolean includeInSet()
Whether the attribute should be included in setting the values on the database.
-
includeInLocking
boolean includeInLocking()
Whether the attribute should be included in optimistic locking (where-clause restriction)
-
isDirty
boolean isDirty()
Whether the attribute is considered dirty
-
isSkipped
default boolean isSkipped()
Whether the attribute be skipped completely.- See Also:
includeInSet()
,includeInLocking()
-
-