Class SetterFieldImpl
- java.lang.Object
-
- org.hibernate.property.access.spi.SetterFieldImpl
-
- All Implemented Interfaces:
Serializable
,Setter
- Direct Known Subclasses:
EnhancedSetterImpl
@Internal public class SetterFieldImpl extends Object implements Setter
Field-based implementation of Setter- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SetterFieldImpl(Class<?> containerClass, String propertyName, Field field)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>
getContainerClass()
Field
getField()
Method
getMethod()
Optional operation (may returnnull
)String
getMethodName()
Optional operation (may returnnull
)String
getPropertyName()
void
set(Object target, Object value)
-
-
-
Method Detail
-
getContainerClass
public Class<?> getContainerClass()
-
getPropertyName
public String getPropertyName()
-
getField
public Field getField()
-
getMethodName
public String getMethodName()
Description copied from interface:Setter
Optional operation (may returnnull
)- Specified by:
getMethodName
in interfaceSetter
-
-