- All Known Implementing Classes:
BaseTablePropertyVisitor
public interface BeanPropertyVisitor
Used to visit a BeanProperty given the type of bean property it is.
-
Method Summary
Modifier and TypeMethodDescriptionvoidVisit an embedded property.voidvisitEmbeddedScalar(BeanProperty p, BeanPropertyAssocOne<?> embedded) Visit the scalar property of an embedded bean.voidvisitEnd()Completed visiting all the properties on the bean.voidVisit a OneToMany or ManyToMany property.voidVisit the exported side of a OneToOne property.voidVisit the imported side of a OneToOne property.voidvisitScalar(BeanProperty p, boolean allowNonNull) Visit a scalar property specify allowing non-null (e.g.
-
Method Details
-
visitEnd
void visitEnd()Completed visiting all the properties on the bean. -
visitMany
Visit a OneToMany or ManyToMany property. -
visitOneImported
Visit the imported side of a OneToOne property. -
visitOneExported
Visit the exported side of a OneToOne property. -
visitEmbedded
Visit an embedded property. -
visitEmbeddedScalar
Visit the scalar property of an embedded bean. -
visitScalar
Visit a scalar property specify allowing non-null (e.g. embedded bean scalar properties).
-