Interface UnsafeBeanProperty<B,T>

Type Parameters:
B - The bean type
T - The bean property type
All Superinterfaces:
AnnotatedElement, AnnotationMetadata, AnnotationMetadataDelegate, AnnotationMetadataProvider, AnnotationSource, ArgumentCoercible<T>, BeanProperty<B,T>, BeanReadProperty<B,T>, BeanWriteProperty<B,T>, Named, UnsafeBeanReadProperty<B,T>, UnsafeBeanWriteProperty<B,T>
All Known Implementing Classes:
AbstractBeanProperty

@NextMajorVersion("Remove all the methods, only keeping those in read/write interfaces") public interface UnsafeBeanProperty<B,T> extends UnsafeBeanWriteProperty<B,T>, UnsafeBeanReadProperty<B,T>, BeanProperty<B,T>
Unsafe bean property interface adds read/write methods which don't validate the input/output. It's the responsibility of the caller to validate the value.
Since:
3.3.1
Author:
Denis Stepanov