}
}
if (propertyDescriptor.isAnnotationPresent(OneToMany.class)) {
OneToMany oneToMany = propertyDescriptor.getAnnotation(OneToMany.class);
CascadeType[] cascades = oneToMany.cascade();
FetchType fetchType = oneToMany.fetch();
String mappedBy = oneToMany.mappedBy();
this.checkCascade(collection, oneToMany, beanDescriptor, propertyDescriptor, cascades);
this.checkFetch(collection, oneToMany, beanDescriptor, propertyDescriptor, fetchType);
this.checkMappedBy(collection, oneToMany, beanDescriptor, propertyDescriptor, mappedBy);