Interface PropertyAccessStrategy
-
public interface PropertyAccessStrategyDescribes a strategy for persistent property access (field, JavaBean-style property, etc). Acts as a factory forPropertyAccessinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyAccessbuildPropertyAccess(java.lang.Class containerJavaType, java.lang.String propertyName)Build a PropertyAccess for the indicated property
-
-
-
Method Detail
-
buildPropertyAccess
PropertyAccess buildPropertyAccess(java.lang.Class containerJavaType, java.lang.String propertyName)
Build a PropertyAccess for the indicated property- Parameters:
containerJavaType- The Java type that contains the property; may benullfor non-pojo cases.propertyName- The property name- Returns:
- The appropriate PropertyAccess
-
-