类 PropertyAccessMapImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessMapImpl
-
- 所有已实现的接口:
PropertyAccess
public class PropertyAccessMapImpl extends Object implements PropertyAccess
PropertyAccess implementation that deal with an underlying Map as the container usingMap.get(java.lang.Object)andMap.put(K, V)- 作者:
- Steve Ebersole, Gavin King
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classPropertyAccessMapImpl.GetterImplstatic classPropertyAccessMapImpl.SetterImpl
-
构造器概要
构造器 构造器 说明 PropertyAccessMapImpl(PropertyAccessStrategyMapImpl strategy, String propertyName)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 GettergetGetter()Obtain the delegate for getting values for the described persistent propertyPropertyAccessStrategygetPropertyAccessStrategy()Access to the PropertyAccessStrategy that created this PropertyAccessSettergetSetter()Obtain the delegate for setting values for the described persistent property
-
-
-
构造器详细资料
-
PropertyAccessMapImpl
public PropertyAccessMapImpl(PropertyAccessStrategyMapImpl strategy, String propertyName)
-
-
方法详细资料
-
getPropertyAccessStrategy
public PropertyAccessStrategy getPropertyAccessStrategy()
从接口复制的说明:PropertyAccessAccess to the PropertyAccessStrategy that created this PropertyAccess- 指定者:
getPropertyAccessStrategy在接口中PropertyAccess- 返回:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
public Getter getGetter()
从接口复制的说明:PropertyAccessObtain the delegate for getting values for the described persistent property- 指定者:
getGetter在接口中PropertyAccess- 返回:
- The property getter
-
getSetter
public Setter getSetter()
从接口复制的说明:PropertyAccessObtain the delegate for setting values for the described persistent property- 指定者:
getSetter在接口中PropertyAccess- 返回:
- The property setter
-
-