接口 PropertyAccessStrategy
-
- 所有已知实现类:
PropertyAccessStrategyBackRefImpl,PropertyAccessStrategyBasicImpl,PropertyAccessStrategyChainedImpl,PropertyAccessStrategyEmbeddedImpl,PropertyAccessStrategyEnhancedImpl,PropertyAccessStrategyFieldImpl,PropertyAccessStrategyIndexBackRefImpl,PropertyAccessStrategyMapImpl,PropertyAccessStrategyMixedImpl,PropertyAccessStrategyNoopImpl
public interface PropertyAccessStrategyDescribes a strategy for persistent property access (field, JavaBean-style property, etc). Acts as a factory forPropertyAccessinstances.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 PropertyAccessbuildPropertyAccess(Class containerJavaType, String propertyName)Build a PropertyAccess for the indicated property
-
-
-
方法详细资料
-
buildPropertyAccess
PropertyAccess buildPropertyAccess(Class containerJavaType, String propertyName)
Build a PropertyAccess for the indicated property- 参数:
containerJavaType- The Java type that contains the property; may benullfor non-pojo cases.propertyName- The property name- 返回:
- The appropriate PropertyAccess
-
-