Class PropertyAccessMapImpl.GetterImpl
java.lang.Object
org.hibernate.property.access.internal.PropertyAccessMapImpl.GetterImpl
- All Implemented Interfaces:
Serializable
,Getter
- Enclosing class:
- PropertyAccessMapImpl
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@Nullable Object
Get the property value from the given owner instance.@Nullable Object
getForInsert
(Object owner, Map mergeMap, SharedSessionContractImplementor session) Get the property value from the given owner instance.@Nullable Member
Retrieve the member to which this property maps.@Nullable Method
Retrieve the getter-method.@Nullable String
Retrieve the getter-method name.Retrieve the declared Java typeClass<?>
Retrieve the declared Java type class
-
Constructor Details
-
GetterImpl
-
-
Method Details
-
get
Description copied from interface:Getter
Get the property value from the given owner instance. -
getReturnTypeClass
Description copied from interface:Getter
Retrieve the declared Java type class- Specified by:
getReturnTypeClass
in interfaceGetter
- Returns:
- The declared java type class.
-
getReturnType
Description copied from interface:Getter
Retrieve the declared Java type- Specified by:
getReturnType
in interfaceGetter
- Returns:
- The declared java type.
-
getMember
Description copied from interface:Getter
Retrieve the member to which this property maps. This might be the field or it might be the getter method.Optional operation (may return
null
) -
getMethodName
Description copied from interface:Getter
Retrieve the getter-method name.Optional operation (may return
null
)- Specified by:
getMethodName
in interfaceGetter
- Returns:
- The name of the getter method, or
null
.
-
getMethod
Description copied from interface:Getter
Retrieve the getter-method.Optional operation (may return
null
)
-